Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
8242107: Shenandoah: Fix aarch64 build after JDK-8242082
Browse files Browse the repository at this point in the history
Reviewed-by: shade
  • Loading branch information
rkennke committed Apr 3, 2020
1 parent 59af1c2 commit ff34c4c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -616,7 +616,7 @@ void ShenandoahBarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAss
// Is marking still active? // Is marking still active?
Address gc_state(thread, in_bytes(ShenandoahThreadLocalData::gc_state_offset())); Address gc_state(thread, in_bytes(ShenandoahThreadLocalData::gc_state_offset()));
__ ldrb(tmp, gc_state); __ ldrb(tmp, gc_state);
__ mov(rscratch2, ShenandoahHeap::MARKING | ShenandoahHeap::TRAVERSAL); __ mov(rscratch2, ShenandoahHeap::MARKING);
__ tst(tmp, rscratch2); __ tst(tmp, rscratch2);
__ br(Assembler::EQ, done); __ br(Assembler::EQ, done);


Expand Down

0 comments on commit ff34c4c

Please sign in to comment.