add missing instruction: ALLOC_AP_NOUPD
authorSimon Marlow <simonmar@microsoft.com>
Tue, 27 Nov 2007 12:26:04 +0000 (12:26 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Tue, 27 Nov 2007 12:26:04 +0000 (12:26 +0000)
rts/Disassembler.c

index 0620e99..19c121f 100644 (file)
@@ -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] );