diff options
author | Ian Lynagh <igloo@earth.li> | 2011-07-15 17:42:24 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-07-15 17:47:25 +0100 |
commit | 5c718b15e83e3b205e13c882660a4952714c3b4c (patch) | |
tree | c458ff0e31c1e966f900ff041c33fe2d37559837 /compiler/nativeGen/RegAlloc/Graph/Stats.hs | |
parent | 3b322660f82d0c7c4f7d02523367ebd0e34c5287 (diff) | |
download | haskell-5c718b15e83e3b205e13c882660a4952714c3b4c.tar.gz |
Remove some more defaultTargetPlatform uses
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Graph/Stats.hs')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Graph/Stats.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/nativeGen/RegAlloc/Graph/Stats.hs b/compiler/nativeGen/RegAlloc/Graph/Stats.hs index 4b10e9fafa..ccbe3fe22d 100644 --- a/compiler/nativeGen/RegAlloc/Graph/Stats.hs +++ b/compiler/nativeGen/RegAlloc/Graph/Stats.hs @@ -76,8 +76,8 @@ instance (Outputable statics, PlatformOutputable instr) => PlatformOutputable (R $$ Color.dotGraph targetRegDotColor (trivColorable platform - targetVirtualRegSqueeze - targetRealRegSqueeze) + (targetVirtualRegSqueeze platform) + (targetRealRegSqueeze platform)) (raGraph s) @@ -113,8 +113,8 @@ instance (Outputable statics, PlatformOutputable instr) => PlatformOutputable (R $$ Color.dotGraph targetRegDotColor (trivColorable platform - targetVirtualRegSqueeze - targetRealRegSqueeze) + (targetVirtualRegSqueeze platform) + (targetRealRegSqueeze platform)) (raGraphColored s) $$ text "" |