[project @ 2001-08-02 17:01:33 by sewardj]
[ghc-hetmet.git] / ghc / rts / Disassembler.c
index 925d117..e0b27e9 100644 (file)
@@ -5,8 +5,8 @@
  * Copyright (c) 1994-1998.
  *
  * $RCSfile: Disassembler.c,v $
- * $Revision: 1.21 $
- * $Date: 2001/05/01 13:11:16 $
+ * $Revision: 1.22 $
+ * $Date: 2001/08/02 17:01:33 $
  * ---------------------------------------------------------------------------*/
 
 #ifdef DEBUG
@@ -44,6 +44,10 @@ int disInstr ( StgBCO *bco, int pc )
    StgInfoTable** itbls       = (StgInfoTable**)(&itbls_arr->payload[0]);
 
    switch (instrs[pc++]) {
+      case bci_CCALL:
+         fprintf(stderr, "CCALL    marshaller at 0x%x\n", 
+                         literals[instrs[pc+1]] );
+         pc += 1; break;
       case bci_STKCHECK: 
          fprintf(stderr, "STKCHECK %d\n", instrs[pc] );
          pc += 1; break;