From: Ian Lynagh Date: Tue, 19 Apr 2011 11:54:18 +0000 (+0100) Subject: Remove use of -fno-asm-mangling flag; fixes #5134 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=17b16ea330efae9733bdf96e30b2759325f9c078 Remove use of -fno-asm-mangling flag; fixes #5134 The flag no longer exists, but we always behave as if it had been used. --- diff --git a/compiler/main/StaticFlagParser.hs b/compiler/main/StaticFlagParser.hs index 54f0a92..5767a52 100644 --- a/compiler/main/StaticFlagParser.hs +++ b/compiler/main/StaticFlagParser.hs @@ -210,7 +210,6 @@ unregFlags :: [Located String] unregFlags = map (mkGeneralLocated "in unregFlags") [ "-optc-DNO_REGS" , "-optc-DUSE_MINIINTERPRETER" - , "-fno-asm-mangling" , "-funregisterised" ] -----------------------------------------------------------------------------