src/cpu/x86/vm/assembler_x86_64.cpp

changeset 485
485d403e94e1
parent 435
a61af66fc99e
child 511
d6fe2e4959d6
     1.1 --- a/src/cpu/x86/vm/assembler_x86_64.cpp	Wed Mar 12 18:09:34 2008 -0700
     1.2 +++ b/src/cpu/x86/vm/assembler_x86_64.cpp	Wed Mar 12 18:37:03 2008 -0700
     1.3 @@ -1304,7 +1304,7 @@
     1.4    emit_operand(src, dst);
     1.5  }
     1.6  
     1.7 -void Assembler::mov64(Register dst, int64_t imm64) {
     1.8 +void Assembler::mov64(Register dst, intptr_t imm64) {
     1.9    InstructionMark im(this);
    1.10    int encode = prefixq_and_encode(dst->encoding());
    1.11    emit_byte(0xB8 | encode);
    1.12 @@ -1331,7 +1331,7 @@
    1.13    emit_operand(dst, src);
    1.14  }
    1.15  
    1.16 -void Assembler::mov64(Address dst, int64_t imm32) {
    1.17 +void Assembler::mov64(Address dst, intptr_t imm32) {
    1.18    assert(is_simm32(imm32), "lost bits");
    1.19    InstructionMark im(this);
    1.20    prefixq(dst);

mercurial