repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
regexp.h: update Versions to match file usage [BZ #18681]
[glibc.git]
/
sysdeps
/
mips
/
abort-instr.h
blob
7ccae5736b325b47d230e46a4c355f3512c24068
1
/* An instruction which should crash any program is a breakpoint. */
2
#ifdef __mips16
3
# define ABORT_INSTRUCTION asm (
"break 63"
)
4
#else
5
# define ABORT_INSTRUCTION asm (
"break 255"
)
6
#endif