summaryrefslogtreecommitdiff
path: root/utils/mkUserGuidePart/Options/Profiling.hs
diff options
context:
space:
mode:
authorKavon Farvardin <kavon@farvard.in>2018-09-23 15:29:37 -0500
committerKavon Farvardin <kavon@farvard.in>2018-09-23 15:29:37 -0500
commit84c2ad99582391005b5e873198b15e9e9eb4f78d (patch)
treecaa8c2f2ec7e97fbb4977263c6817c9af5025cf4 /utils/mkUserGuidePart/Options/Profiling.hs
parent8ddb47cfcf5776e9a3c55fd37947c8a95e00fa12 (diff)
parente68b439fe5de61b9a2ca51af472185c62ccb8b46 (diff)
downloadhaskell-wip/T13904.tar.gz
update to current master againwip/T13904
Diffstat (limited to 'utils/mkUserGuidePart/Options/Profiling.hs')
-rw-r--r--utils/mkUserGuidePart/Options/Profiling.hs44
1 files changed, 0 insertions, 44 deletions
diff --git a/utils/mkUserGuidePart/Options/Profiling.hs b/utils/mkUserGuidePart/Options/Profiling.hs
deleted file mode 100644
index af3853fafc..0000000000
--- a/utils/mkUserGuidePart/Options/Profiling.hs
+++ /dev/null
@@ -1,44 +0,0 @@
-module Options.Profiling where
-
-import Types
-
-profilingOptions :: [Flag]
-profilingOptions =
- [ flag { flagName = "-prof"
- , flagDescription = "Turn on profiling"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-fprof-auto"
- , flagDescription =
- "Auto-add ``SCC``\\ s to all bindings not marked INLINE"
- , flagType = DynamicFlag
- , flagReverse = "-fno-prof-auto"
- }
- , flag { flagName = "-fprof-auto-top"
- , flagDescription =
- "Auto-add ``SCC``\\ s to all top-level bindings not marked INLINE"
- , flagType = DynamicFlag
- , flagReverse = "-fno-prof-auto"
- }
- , flag { flagName = "-fprof-auto-exported"
- , flagDescription =
- "Auto-add ``SCC``\\ s to all exported bindings not marked INLINE"
- , flagType = DynamicFlag
- , flagReverse = "-fno-prof-auto"
- }
- , flag { flagName = "-fprof-cafs"
- , flagDescription = "Auto-add ``SCC``\\ s to all CAFs"
- , flagType = DynamicFlag
- , flagReverse = "-fno-prof-cafs"
- }
- , flag { flagName = "-fno-prof-count-entries"
- , flagDescription = "Do not collect entry counts"
- , flagType = DynamicFlag
- , flagReverse = "-fprof-count-entries"
- }
- , flag { flagName = "-ticky"
- , flagDescription =
- ":ref:`Turn on ticky-ticky profiling <ticky-ticky>`"
- , flagType = DynamicFlag
- }
- ]