src/cpu/x86/vm/nativeInst_x86.hpp

changeset 749
3a26e9e4be71
parent 739
dc7f315e41f7
child 1907
c18cbe5936b8
     1.1 --- a/src/cpu/x86/vm/nativeInst_x86.hpp	Tue Sep 02 08:30:41 2008 -0700
     1.2 +++ b/src/cpu/x86/vm/nativeInst_x86.hpp	Wed Sep 03 14:57:00 2008 -0700
     1.3 @@ -391,6 +391,9 @@
     1.4  
     1.5    void  set_jump_destination(address dest)  {
     1.6      intptr_t val = dest - next_instruction_address();
     1.7 +    if (dest == (address) -1) {
     1.8 +      val = -5; // jump to self
     1.9 +    }
    1.10  #ifdef AMD64
    1.11      assert((labs(val)  & 0xFFFFFFFF00000000) == 0 || dest == (address)-1, "must be 32bit offset or -1");
    1.12  #endif // AMD64

mercurial