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 9dc4448 commit df66882Copy full SHA for df66882
src/llvm-final-gc-lowering.cpp
@@ -315,10 +315,10 @@ bool FinalLowerGC::runOnFunction(Function &F)
315
LOWER_INTRINSIC(safepoint, lowerSafepoint);
316
317
#ifdef MMTK_GC
318
- LOWER_INTRINSIC(writeBarrier1, lowerNewGCFrame);
319
- LOWER_INTRINSIC(writeBarrier2, lowerNewGCFrame);
320
- LOWER_INTRINSIC(writeBarrier1Slow, lowerNewGCFrame);
321
- LOWER_INTRINSIC(writeBarrier2Slow, lowerNewGCFrame);
+ LOWER_INTRINSIC(writeBarrier1, lowerWriteBarrier1);
+ LOWER_INTRINSIC(writeBarrier2, lowerWriteBarrier2);
+ LOWER_INTRINSIC(writeBarrier1Slow, lowerWriteBarrier1Slow);
+ LOWER_INTRINSIC(writeBarrier2Slow, lowerWriteBarrier2Slow);
322
#endif
323
324
#undef LOWER_INTRINSIC
0 commit comments