about summary refs log tree commit diff
path: root/sysdeps/mips/abort-instr.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mips/abort-instr.h')
-rw-r--r--sysdeps/mips/abort-instr.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/mips/abort-instr.h b/sysdeps/mips/abort-instr.h
new file mode 100644
index 0000000000..7ccae5736b
--- /dev/null
+++ b/sysdeps/mips/abort-instr.h
@@ -0,0 +1,6 @@
+/* An instruction which should crash any program is a breakpoint.  */
+#ifdef __mips16
+# define ABORT_INSTRUCTION asm ("break 63")
+#else
+# define ABORT_INSTRUCTION asm ("break 255")
+#endif