diff options
Diffstat (limited to 'rts/Disassembler.c')
-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] ); |