diff --git a/svf-llvm/lib/LLVMModule.cpp b/svf-llvm/lib/LLVMModule.cpp index d55254ff0..dc559368b 100644 --- a/svf-llvm/lib/LLVMModule.cpp +++ b/svf-llvm/lib/LLVMModule.cpp @@ -299,9 +299,9 @@ void LLVMModuleSet::createSVFFunction(const Function* func) if (const CallBase* call = SVFUtil::dyn_cast(&inst)) { svfInst = new SVFCallInst( - getSVFType(call->getType()), svfBB, - call->getFunctionType()->isVarArg(), - inst.isTerminator()); + getSVFType(call->getType()), svfBB, + call->getFunctionType()->isVarArg(), + inst.isTerminator()); } else {