diff options
author | Ian Lynagh <igloo@earth.li> | 2010-07-17 16:23:56 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-07-17 16:23:56 +0000 |
commit | 4dbc1e5a79aa19fc3938a972f0a42e27f5db044c (patch) | |
tree | 554bcc4a3fe88bae58a3a951c46694ba9706a8ea /rts/RtsUtils.c | |
parent | 99f88e177b46fc764338e85d49d6920286c9a5fd (diff) | |
download | haskell-4dbc1e5a79aa19fc3938a972f0a42e27f5db044c.tar.gz |
Reorder RTS --info output
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r-- | rts/RtsUtils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index dc11cb46ef..eee7594143 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -441,14 +441,14 @@ void printRtsInfo(void) { printf(" [(\"GHC RTS\", \"YES\")\n"); mkRtsInfoPair("GHC version", ProjectVersion); mkRtsInfoPair("RTS way", RtsWay); - mkRtsInfoPair("Host platform", HostPlatform); - mkRtsInfoPair("Host architecture", HostArch); - mkRtsInfoPair("Host OS", HostOS); - mkRtsInfoPair("Host vendor", HostVendor); mkRtsInfoPair("Build platform", BuildPlatform); mkRtsInfoPair("Build architecture", BuildArch); mkRtsInfoPair("Build OS", BuildOS); mkRtsInfoPair("Build vendor", BuildVendor); + mkRtsInfoPair("Host platform", HostPlatform); + mkRtsInfoPair("Host architecture", HostArch); + mkRtsInfoPair("Host OS", HostOS); + mkRtsInfoPair("Host vendor", HostVendor); mkRtsInfoPair("Target platform", TargetPlatform); mkRtsInfoPair("Target architecture", TargetArch); mkRtsInfoPair("Target OS", TargetOS); |