7056380: VM crashes with SIGSEGV in compiled code

Code was using andq reg, imm instead of addq addr, imm

Reviewed-by: kvn, jrose, twisti
This commit is contained in:
Tom Rodriguez 2011-06-21 09:04:55 -07:00
parent d19a8f6e35
commit 7c1d16f7d3
3 changed files with 25 additions and 35 deletions

View file

@ -779,6 +779,7 @@ private:
void andl(Register dst, Address src);
void andl(Register dst, Register src);
void andq(Address dst, int32_t imm32);
void andq(Register dst, int32_t imm32);
void andq(Register dst, Address src);
void andq(Register dst, Register src);