diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-11-27 12:26:04 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-11-27 12:26:04 +0000 |
commit | 3dc2953ab8baa7a779b28e76433d5e5ad97aa868 (patch) | |
tree | 72b0afc2631d3384484cf26b374ba01bd87dee58 /rts | |
parent | 770dd8113b313be8c1db889e82c4a8bf8a553ad5 (diff) | |
download | haskell-3dc2953ab8baa7a779b28e76433d5e5ad97aa868.tar.gz |
add missing instruction: ALLOC_AP_NOUPD
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Disassembler.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/Disassembler.c b/rts/Disassembler.c index 0620e99967..19c121f2f1 100644 --- a/rts/Disassembler.c +++ b/rts/Disassembler.c @@ -148,6 +148,9 @@ disInstr ( StgBCO *bco, int pc ) case bci_ALLOC_AP: debugBelch("ALLOC_AP %d words\n", instrs[pc] ); pc += 1; break; + case bci_ALLOC_AP_NOUPD: + debugBelch("ALLOC_AP_NOUPD %d words\n", instrs[pc] ); + pc += 1; break; case bci_ALLOC_PAP: debugBelch("ALLOC_PAP %d arity, %d words\n", instrs[pc], instrs[pc+1] ); |