summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/ia64/abort-instr.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ce2ecae5a3..5bc8005828 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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")