comparison src/cpu/x86/vm/relocInfo_x86.hpp @ 344:6aae2f9d0294

Merge
author ysr
date Thu, 12 Jun 2008 13:50:55 -0700
parents c436414a719e
children d1605aabd0a1
comparison
equal deleted inserted replaced
342:37f87013dfd8 344:6aae2f9d0294
27 enum { 27 enum {
28 // Intel instructions are byte-aligned. 28 // Intel instructions are byte-aligned.
29 offset_unit = 1, 29 offset_unit = 1,
30 30
31 // Encodes Assembler::disp32_operand vs. Assembler::imm32_operand. 31 // Encodes Assembler::disp32_operand vs. Assembler::imm32_operand.
32 #ifndef AMD64
32 format_width = 1 33 format_width = 1
34 #else
35 // vs Assembler::narrow_oop_operand.
36 format_width = 2
37 #endif
33 }; 38 };