summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-01-11 18:03:15 +0000
committerIan Lynagh <ian@well-typed.com>2013-01-11 18:03:15 +0000
commit385dced67dc57632d598267ea7577f7a69747260 (patch)
treee761312b9204207fad02611be77773c117633bea
parentde373f9131ccdd953f81edd20e85a496322fd678 (diff)
downloadhaskell-385dced67dc57632d598267ea7577f7a69747260.tar.gz
Update a panic message
I don't actually know if suggesting -fllvm as a workaround is useful advice, but -fvia-C certainly won't help as it doesn't do anything any more.
-rw-r--r--compiler/nativeGen/SPARC/Base.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/SPARC/Base.hs b/compiler/nativeGen/SPARC/Base.hs
index 7a05663860..96fb5e7797 100644
--- a/compiler/nativeGen/SPARC/Base.hs
+++ b/compiler/nativeGen/SPARC/Base.hs
@@ -70,6 +70,6 @@ largeOffsetError :: (Integral a, Show a) => a -> b
largeOffsetError i
= panic ("ERROR: SPARC native-code generator cannot handle large offset ("
++ show i ++ ");\nprobably because of large constant data structures;" ++
- "\nworkaround: use -fvia-C on this module.\n")
+ "\nworkaround: use -fllvm on this module.\n")