summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yunsup Lee <yunsup@cs.berkeley.edu>2011-05-18 14:35:32 -0700
committerGravatar Yunsup Lee <yunsup@cs.berkeley.edu>2011-05-18 14:35:32 -0700
commitaf726e3d9d91e2ed942175085e5defaa2296fc44 (patch)
tree7451815723996f79a47c29bd12bcfaba8ef5c167
parente091d4f4a892af59e47532078f82a0628c55709e (diff)
[opcodes,pk,sim] add more vector traps (for #banks, illegal instructions)
-rwxr-xr-xparse-opcodes4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse-opcodes b/parse-opcodes
index 4ebc638..5a34318 100755
--- a/parse-opcodes
+++ b/parse-opcodes
@@ -122,12 +122,12 @@ def make_switch(match,mask):
print ' #include "insns/%s.h"' % name2
print ' break;'
print ' }'
- print ' throw trap_illegal_instruction;'
+ print ' throw_illegal_instruction;'
print ' break;'
print ' }'
print ' default:'
print ' {'
- print ' throw trap_illegal_instruction;'
+ print ' throw_illegal_instruction;'
print ' }'
print '}'