]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Don't check against SP.
authorRichard Henderson <rth@redhat.com>
Fri, 24 Apr 1998 14:43:00 +0000 (14:43 +0000)
committerRichard Henderson <rth@redhat.com>
Fri, 24 Apr 1998 14:43:00 +0000 (14:43 +0000)
sysdeps/alpha/bits/setjmp.h

index af0b5ae577550598a2398b3594096dde830c1fe0..a15ab31b476652d8f3ea1d125cab8adc9cbd7692 100644 (file)
@@ -78,6 +78,5 @@ typedef long int __jmp_buf[17];
 /* Test if longjmp to JMPBUF would unwind the frame containing a local
    variable at ADDRESS.  */
 #define _JMPBUF_UNWINDS(_jmpbuf, _address)                             \
-  ({ register void *_sp __asm__("$30"); void *_addr = (_address);      \
-     _sp <= _addr && _addr < (void *)((_jmpbuf)[JB_SP]); })
+     ((void *)(_address) < (void *)((_jmpbuf)[JB_SP]))
 #endif