diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/ia64/abort-instr.h | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2001-04-06 Ulrich Drepper <drepper@redhat.com> + * sysdeps/ia64/abort-instr.h: New file. Code by David Mosberger. + * sysdeps/ia64/atomicity.h: New file. Copied from libstdc++. * sysdeps/i386/i486/atomicity.h: Clean up the asms. diff --git a/sysdeps/ia64/abort-instr.h b/sysdeps/ia64/abort-instr.h new file mode 100644 index 0000000000..8f26f0fc2a --- /dev/null +++ b/sysdeps/ia64/abort-instr.h @@ -0,0 +1,3 @@ +/* An instruction which should crash any program is `break 0' which triggers + SIGILL. */ +#define ABORT_INSTRUCTION asm ("break 0") |