From 4dbc1e5a79aa19fc3938a972f0a42e27f5db044c Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 17 Jul 2010 16:23:56 +0000 Subject: [PATCH] Reorder RTS --info output --- rts/RtsUtils.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index dc11cb4..eee7594 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); -- 1.7.10.4