We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab75997 commit a26b3f4Copy full SHA for a26b3f4
llvm/lib/Transforms/Yk/StackMaps.cpp
@@ -52,7 +52,7 @@ class YkStackmaps : public ModulePass {
52
if (F.empty()) // skip declarations.
53
continue;
54
LivenessAnalysis LA(&F);
55
- for (BasicBlock &BB : F)
+ for (BasicBlock &BB : F) {
56
for (Instruction &I : BB) {
57
if (isa<CallInst>(I)) {
58
CallInst &CI = cast<CallInst>(I);
@@ -78,6 +78,7 @@ class YkStackmaps : public ModulePass {
78
SMCalls.insert({&I, LA.getLiveVarsBefore(&I)});
79
}
80
81
+ }
82
83
84
Function *SMFunc = Intrinsic::getDeclaration(&M, SMFuncID);
0 commit comments