X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fcmm%2FCmm.hs;h=74387504c51b1cff56e6311f6bc6aae05b37607f;hp=0d1876e0e61068db72f6c8c766dc48b1d08c4a72;hb=418175d3c36ca51495d9dfb085fb01711e4c38f9;hpb=77cc133da7af6961add020cab1ba9eadee3a0b67 diff --git a/compiler/cmm/Cmm.hs b/compiler/cmm/Cmm.hs index 0d1876e..7438750 100644 --- a/compiler/cmm/Cmm.hs +++ b/compiler/cmm/Cmm.hs @@ -58,7 +58,7 @@ data GenCmmTop d i = CmmProc [d] -- Info table, may be empty CLabel -- Used to generate both info & entry labels - [LocalReg] -- Argument locals live on entry (C-- procedure params) + CmmFormals -- Argument locals live on entry (C-- procedure params) [GenBasicBlock i] -- Code, may be empty. The first block is -- the entry point. The order is otherwise initially -- unimportant, but at some point the code gen will @@ -132,10 +132,10 @@ data CmmStmt -- Undefined outside range, and when there's a Nothing | CmmJump CmmExpr -- Jump to another function, - CmmActuals -- with these parameters. + CmmActuals -- with these parameters. | CmmReturn -- Return from a function, - CmmActuals -- with these return values. + CmmActuals -- with these return values. type CmmActuals = [(CmmExpr,MachHint)] type CmmFormals = [(CmmReg,MachHint)]