From 3dc2953ab8baa7a779b28e76433d5e5ad97aa868 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 27 Nov 2007 12:26:04 +0000 Subject: [PATCH] add missing instruction: ALLOC_AP_NOUPD --- rts/Disassembler.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rts/Disassembler.c b/rts/Disassembler.c index 0620e99..19c121f 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] ); -- 1.7.10.4