Skip to content

Commit 3c58586

Browse files
MMoryfabianbs96
andauthored
Update lib/PhasarLLVM/DataFlowSolver/Mono/Problems/InterMonoFullConstantPropagation.cpp
Co-authored-by: fabianbs96 <52407375+fabianbs96@users.noreply.github.com>
1 parent ad18049 commit 3c58586

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/PhasarLLVM/DataFlowSolver/Mono/Problems/InterMonoFullConstantPropagation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ InterMonoFullConstantPropagation::callFlow(
7979
llvm::isa<llvm::InvokeInst>(CallSite)) {
8080
const auto *CS = llvm::cast<llvm::CallBase>(CallSite);
8181
// early exit; varargs not handled yet
82-
if (CS->arg_size() == 0 || Callee->isVarArg()) {
82+
if (CS->arg_empty() || Callee->isVarArg()) {
8383
return Out;
8484
}
8585
vector<const llvm::Value *> Actuals;

0 commit comments

Comments
 (0)