diff options
author | Richard Henderson <rth@twiddle.net> | 2015-09-27 14:26:04 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-10-07 20:03:15 +1100 |
commit | a0577d2aa9bd42d5d584fa03649a166ba45c2f3d (patch) | |
tree | 3aefc90eb42de4c32213479c96d94bdfc2115dd1 /target-tilegx/cpu.h | |
parent | dd8070d865ad1b32876931f812a80645f97112ff (diff) |
target-tilegx: Use TILEGX_EXCP_SIGNAL instead of TILEGX_EXCP_SEGV
Consolidate signal handling under a single exception.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-tilegx/cpu.h')
-rw-r--r-- | target-tilegx/cpu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target-tilegx/cpu.h b/target-tilegx/cpu.h index 023ccd4735..6f04fe7fb2 100644 --- a/target-tilegx/cpu.h +++ b/target-tilegx/cpu.h @@ -60,8 +60,7 @@ enum { typedef enum { TILEGX_EXCP_NONE = 0, TILEGX_EXCP_SYSCALL = 1, - TILEGX_EXCP_SEGV = 2, - TILEGX_EXCP_SIGNAL = 3, + TILEGX_EXCP_SIGNAL = 2, TILEGX_EXCP_OPCODE_UNKNOWN = 0x101, TILEGX_EXCP_OPCODE_UNIMPLEMENTED = 0x102, TILEGX_EXCP_OPCODE_CMPEXCH = 0x103, |