diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-01-11 18:03:15 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-01-11 18:03:15 +0000 |
commit | 385dced67dc57632d598267ea7577f7a69747260 (patch) | |
tree | e761312b9204207fad02611be77773c117633bea /compiler/nativeGen | |
parent | de373f9131ccdd953f81edd20e85a496322fd678 (diff) | |
download | haskell-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.
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r-- | compiler/nativeGen/SPARC/Base.hs | 2 |
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") |