Fixed uninitialised FunBind fun_tick field
[ghc-hetmet.git] / rts / Interpreter.c
index 81d4e38..fba9e3f 100644 (file)
@@ -12,7 +12,6 @@
 #include "TSO.h"
 #include "Schedule.h"
 #include "RtsFlags.h"
-#include "Storage.h"
 #include "LdvProfile.h"
 #include "Updates.h"
 #include "Sanity.h"
@@ -1249,7 +1248,8 @@ run_BCO:
            
            // Errors
        default: 
-           barf("interpretBCO: unknown or unimplemented opcode");
+           barf("interpretBCO: unknown or unimplemented opcode %d",
+                 (int)BCO_NEXT);
 
        } /* switch on opcode */
     }