diff options
| author | Ian Lynagh <ian@well-typed.com> | 2012-08-06 22:51:28 +0100 |
|---|---|---|
| committer | Ian Lynagh <ian@well-typed.com> | 2012-08-06 22:51:28 +0100 |
| commit | e6ef5ab66f51a8b821a4ae8646faca19cf600d94 (patch) | |
| tree | 0ac8f5178caa80f1fabc3da22e46db8cb19a553a /compiler/main/StaticFlags.hs | |
| parent | 8e7fb28fc89eb9b99c747698f41995c269cd1090 (diff) | |
| download | haskell-e6ef5ab66f51a8b821a4ae8646faca19cf600d94.tar.gz | |
Make tablesNextToCode "dynamic"
This is a bit odd by itself, but it's a stepping stone on the way to
putting "target unregisterised" into the settings file.
Diffstat (limited to 'compiler/main/StaticFlags.hs')
| -rw-r--r-- | compiler/main/StaticFlags.hs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index 79faf1ec2f..f19497cb94 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -74,7 +74,6 @@ module StaticFlags ( opt_HistorySize, opt_Unregisterised, v_Ld_inputs, - tablesNextToCode, opt_StubDeadValues, opt_Ticky, @@ -87,7 +86,6 @@ module StaticFlags ( #include "HsVersions.h" -import Config import FastString import Util import Maybes ( firstJusts ) @@ -314,14 +312,6 @@ opt_Static = lookUp (fsLit "-static") opt_Unregisterised :: Bool opt_Unregisterised = lookUp (fsLit "-funregisterised") --- Derived, not a real option. Determines whether we will be compiling --- info tables that reside just before the entry code, or with an --- indirection to the entry code. See TABLES_NEXT_TO_CODE in --- includes/rts/storage/InfoTables.h. -tablesNextToCode :: Bool -tablesNextToCode = not opt_Unregisterised - && cGhcEnableTablesNextToCode == "YES" - -- Include full span info in error messages, instead of just the start position. opt_ErrorSpans :: Bool opt_ErrorSpans = lookUp (fsLit "-ferror-spans") |
