< prev index next >

src/cpu/sparc/vm/debug_sparc.cpp

Print this page
rev 7424 : improve secondary signal handling

*** 79,84 **** --- 79,90 ---- } if (sp != NULL) tty->print("[%d] sp=" INTPTR_FORMAT " [bogus sp!]", count, p2i(sp)); } + // return an instruction which will generate a SIGILL + bool get_illegal_instruction_sequence(uint8_t buf[8]) { + memset(buf, 0, 8); + return true; + } + #endif // PRODUCT
< prev index next >