Skip to content

Commit 7cc64d5

Browse files
committed
Enabled inlined fastpath allocation again
1 parent ec77b2b commit 7cc64d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llvm-final-gc-lowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ void FinalLowerGC::lowerGCAllocBytes(CallInst *target, Function &F)
247247

248248
// Should we generate fastpath allocation sequence here? We should always generate fastpath here for MMTk.
249249
// Setting this to false will increase allocation overhead a lot, and should only be used for debugging.
250-
const bool INLINE_FASTPATH_ALLOCATION = false;
250+
const bool INLINE_FASTPATH_ALLOCATION = true;
251251

252252
if (INLINE_FASTPATH_ALLOCATION) {
253253
// Assuming we use the first immix allocator.

0 commit comments

Comments
 (0)