summaryrefslogtreecommitdiff
path: root/utils/mkUserGuidePart/Options/Profiling.hs
diff options
context:
space:
mode:
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
- }
- ]