summaryrefslogtreecommitdiff
path: root/rts/RtsUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r--rts/RtsUtils.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c
index b099fa2dad..2a53d18572 100644
--- a/rts/RtsUtils.c
+++ b/rts/RtsUtils.c
@@ -304,8 +304,13 @@ void printRtsInfo(const RtsConfig rts_config) {
mkRtsInfoPair("Target OS", TargetOS);
mkRtsInfoPair("Target vendor", TargetVendor);
mkRtsInfoPair("Word size", TOSTRING(WORD_SIZE_IN_BITS));
+ // TODO(@Ericson2314) This is a joint property of the RTS and generated
+ // code. The compiler will soon be multi-target so it doesn't make sense to
+ // say the target is <ABI adj>, unless we are talking about the host
+ // platform of the compiler / ABI used by a compiler plugin. This is *not*
+ // that, so I think a rename is in order to avoid confusion.
mkRtsInfoPair("Compiler unregisterised", GhcUnregisterised);
- mkRtsInfoPair("Tables next to code", GhcEnableTablesNextToCode);
+ mkRtsInfoPair("Tables next to code", TablesNextToCode);
mkRtsInfoPair("Flag -with-rtsopts", /* See #15261 */
rts_config.rts_opts != NULL ? rts_config.rts_opts : "");
printf(" ]\n");