Skip to content

Commit

Permalink
Don't make phantom-access narrow (mistake when doing 32bit parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Kennke committed Nov 10, 2020
1 parent 37c9778 commit 92a92fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ void ShenandoahBarrierSetAssembler::load_reference_barrier(MacroAssembler* masm,
bool is_weak = ShenandoahBarrierSet::is_weak_access(decorators);
bool is_phantom = ShenandoahBarrierSet::is_phantom_access(decorators);
bool is_native = ShenandoahBarrierSet::is_native_access(decorators);
bool is_narrow = UseCompressedOops && is_native;
bool is_narrow = UseCompressedOops && !is_native;

Label heap_stable, not_cset;

Expand Down

0 comments on commit 92a92fc

Please sign in to comment.