diff options
Diffstat (limited to 'compiler/nativeGen/Instruction.hs')
-rw-r--r-- | compiler/nativeGen/Instruction.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/nativeGen/Instruction.hs b/compiler/nativeGen/Instruction.hs index 31827b9088..0d4161f843 100644 --- a/compiler/nativeGen/Instruction.hs +++ b/compiler/nativeGen/Instruction.hs @@ -3,7 +3,7 @@ module Instruction ( RegUsage(..), noUsage, NatCmm, - NatCmmTop, + NatCmmDecl, NatBasicBlock, Instruction(..) ) @@ -37,13 +37,13 @@ noUsage = RU [] [] -- Our flavours of the Cmm types -- Type synonyms for Cmm populated with native code type NatCmm instr - = GenCmmPgm + = GenCmmGroup CmmStatics (Maybe CmmStatics) (ListGraph instr) -type NatCmmTop statics instr - = GenCmmTop +type NatCmmDecl statics instr + = GenCmmDecl statics (Maybe CmmStatics) (ListGraph instr) |