< prev index next >

src/cpu/ppc/vm/debug_ppc.cpp

Print this page
rev 7424 : improve secondary signal handling

@@ -31,5 +31,14 @@
 #include "runtime/os.hpp"
 #include "utilities/debug.hpp"
 #include "utilities/top.hpp"
 
 void pd_ps(frame f) {}
+
+#ifndef PRODUCT
+// return an instruction which will generate a SIGILL
+bool get_illegal_instruction_sequence(uint8_t buf[8]) {
+  memset(buf, 0, 8);
+  return true;
+}
+#endif
+
< prev index next >