--- old/src/hotspot/share/gc/shared/c2/barrierSetC2.cpp 2018-06-13 04:29:19.154258357 -0400 +++ new/src/hotspot/share/gc/shared/c2/barrierSetC2.cpp 2018-06-13 04:29:18.838241761 -0400 @@ -74,8 +74,8 @@ bool unaligned = (decorators & C2_UNALIGNED) != 0; bool requires_atomic_access = (decorators & MO_UNORDERED) == 0; - bool in_root = (decorators & IN_NATIVE) != 0; - assert(!in_root, "not supported yet"); + bool in_native = (decorators & IN_NATIVE) != 0; + assert(!in_native, "not supported yet"); if (access.type() == T_DOUBLE) { Node* new_val = kit->dstore_rounding(val.node()); @@ -103,8 +103,8 @@ bool control_dependent = (decorators & C2_CONTROL_DEPENDENT_LOAD) != 0; bool pinned = (decorators & C2_PINNED_LOAD) != 0; - bool in_root = (decorators & IN_NATIVE) != 0; - assert(!in_root, "not supported yet"); + bool in_native = (decorators & IN_NATIVE) != 0; + assert(!in_native, "not supported yet"); MemNode::MemOrd mo = access.mem_node_mo(); LoadNode::ControlDependency dep = pinned ? LoadNode::Pinned : LoadNode::DependsOnlyOnTest;