Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
06b8942c
Commit
06b8942c
authored
Sep 07, 2006
by
Ian Lynagh
Browse files
If we get an unknown or unimplemented opcode, say what it is
parent
bbc6aa4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/Interpreter.c
View file @
06b8942c
...
...
@@ -1249,7 +1249,8 @@ run_BCO:
// Errors
default:
barf
(
"interpretBCO: unknown or unimplemented opcode"
);
barf
(
"interpretBCO: unknown or unimplemented opcode %d"
,
(
int
)
BCO_NEXT
);
}
/* switch on opcode */
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment