comparison src/share/vm/c1/c1_LinearScan.cpp @ 1330:4a9cc99938e3

Merge
author acorn
date Fri, 26 Mar 2010 11:10:26 -0400
parents c466efa608d5
children 0a43776437b6
comparison
equal deleted inserted replaced
1329:84043c7507b9 1330:4a9cc99938e3
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;