Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/12.8' into 12.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jumormt committed Dec 8, 2023
2 parents fc0208d + 9a96f48 commit e972fd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion svf-llvm/lib/LLVMModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ void LLVMModuleSet::initSVFBasicBlock(const Function* func)
// For no return functions, we set the last block as exit BB
// This ensures that each function that has definition must have an exit BB
if(svfFun->exitBlock == nullptr && svfFun->hasBasicBlock()) svfFun->setExitBlock(
const_cast<SVFBasicBlock *>(svfFun->back()));
const_cast<SVFBasicBlock *>(svfFun->back()));
}


Expand Down
4 changes: 3 additions & 1 deletion svf/lib/MemoryModel/AccessPath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ APOffset AccessPath::computeConstantOffset() const
{
SVFUtil::errs() << "It is overflow access, we access the last idx\n";
offset = so.size() - 1;
} else {
}
else
{

}

Expand Down

0 comments on commit e972fd9

Please sign in to comment.