aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2006-12-13 21:13:31 +0000
committerDevang Patel <dpatel@apple.com>2006-12-13 21:13:31 +0000
commite8ff1ce7343c697ff90d940c8c5fa8fccc09220d (patch)
tree8874a196c6c5392d046cfefdb5e620492fa69881 /include
parent133b1dd8adbd441ef77bcdae772df6b439e3123b (diff)
Using PDL as a prefix for PassDebugLevel enums is not a good idea.
Fix it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Pass.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index b376b8b1d3..15381ac978 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -355,11 +355,6 @@ private:
/// @brief This is the storage for the -time-passes option.
extern bool TimePassesIsEnabled;
-// Different debug levels that can be enabled...
-enum PassDebugLevel {
- PDLNone, PDLArguments, PDLStructure, PDLExecutions, PDLDetails
-};
-
} // End llvm namespace
// Include support files that contain important APIs commonly used by Passes,