src/share/vm/c1/c1_LinearScan.cpp

changeset 1732
c466efa608d5
parent 1495
323bd24c6520
child 1804
0a43776437b6
equal deleted inserted replaced
1731:d8e270c4f609 1732:c466efa608d5
2475 scope_values->append(new ConstantIntValue(c->as_jint_lo_bits())); 2475 scope_values->append(new ConstantIntValue(c->as_jint_lo_bits()));
2476 scope_values->append(new ConstantIntValue(c->as_jint_hi_bits())); 2476 scope_values->append(new ConstantIntValue(c->as_jint_hi_bits()));
2477 } 2477 }
2478 #endif 2478 #endif
2479 return 2; 2479 return 2;
2480 }
2481
2482 case T_ADDRESS: {
2483 #ifdef _LP64
2484 scope_values->append(new ConstantLongValue(c->as_jint()));
2485 #else
2486 scope_values->append(new ConstantIntValue(c->as_jint()));
2487 #endif
2488 return 1;
2480 } 2489 }
2481 2490
2482 default: 2491 default:
2483 ShouldNotReachHere(); 2492 ShouldNotReachHere();
2484 return -1; 2493 return -1;

mercurial