src/cpu/sparc/vm/sharedRuntime_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6705523 Cdiff src/cpu/sparc/vm/sharedRuntime_sparc.cpp

src/cpu/sparc/vm/sharedRuntime_sparc.cpp

Print this page
rev 148 : 6705523: Fix for 6695506 will violate spec when used in JDK6
Summary: Make max classfile version number dependent on JDK version
Reviewed-by:

*** 2719,2729 **** } #endif /* ASSERT */ VMRegPair zero; ! zero.set2(G0->as_VMReg()); int c_arg, j_arg; Register conversion_off = noreg; --- 2719,2730 ---- } #endif /* ASSERT */ VMRegPair zero; ! const Register g0 = G0; // without this we get a compiler warning (why??) ! zero.set2(g0->as_VMReg()); int c_arg, j_arg; Register conversion_off = noreg;
src/cpu/sparc/vm/sharedRuntime_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File