diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-04-25 21:27:30 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-04-25 22:21:26 +0100 |
commit | c9e7159b53e88790340b70ca0150178fe6c5704a (patch) | |
tree | 0ee731c623ac216ccf325f4a71276c44c0aff588 /compiler | |
parent | 0947a00bf972956aee7b1bfc42c9d1f13430fcfc (diff) | |
download | haskell-c9e7159b53e88790340b70ca0150178fe6c5704a.tar.gz |
Remove some old commented-out code in StaticFlags
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/StaticFlags.hs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index e2b9d95166..064154d981 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -272,20 +272,3 @@ try_read sw str -- and announce errors in a more civilised way. -} - -{- - Putting the compiler options into temporary at-files - may turn out to be necessary later on if we turn hsc into - a pure Win32 application where I think there's a command-line - length limit of 255. unpacked_opts understands the @ option. - -unpacked_opts :: [String] -unpacked_opts = - concat $ - map (expandAts) $ - map unpackFS argv -- NOT ARGV any more: v_Static_hsc_opts - where - expandAts ('@':fname) = words (unsafePerformIO (readFile fname)) - expandAts l = [l] --} - |