diff options
author | Ian Lynagh <igloo@earth.li> | 2011-02-19 16:15:08 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-02-19 16:15:08 +0000 |
commit | 9b8f6b8689528dacb59fcc50c98174476585324c (patch) | |
tree | afd4b95a1a968596afa2d4998cb52bb6502aeeb5 /compiler/main | |
parent | 796a3b3637f61ae04d2f9bfdb7937cd796272f72 (diff) | |
download | haskell-9b8f6b8689528dacb59fcc50c98174476585324c.tar.gz |
Clarify the "object splitting" variable names
Diffstat (limited to 'compiler/main')
-rw-r--r-- | compiler/main/DynFlags.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 7bd4d84b37..1317441c00 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -2281,7 +2281,7 @@ picCCOpts _dflags -- Splitting can_split :: Bool -can_split = cSplitObjs == "YES" +can_split = cSupportsSplitObjs == "YES" -- ----------------------------------------------------------------------------- -- Compiler Info @@ -2298,7 +2298,7 @@ compilerInfo = [("Project name", String cProjectName), ("Host platform", String cHostPlatformString), ("Target platform", String cTargetPlatformString), ("Have interpreter", String cGhcWithInterpreter), - ("Object splitting", String cSplitObjs), + ("Object splitting supported", String cSupportsSplitObjs), ("Have native code generator", String cGhcWithNativeCodeGen), ("Support SMP", String cGhcWithSMP), ("Unregisterised", String cGhcUnregisterised), |