[llvm-commits] CVS: llvm/include/llvm/Pass.h

Devang Patel dpatel at apple.com
Wed Dec 13 12:04:06 PST 2006



Changes in directory llvm/include/llvm:

Pass.h updated: 1.59 -> 1.60
---
Log message:

Move enum PassDebugLevel from PassManagerT.h to Pass.h.
Use PDL as the prefix for these enums.
Define and use PassDebugging_New in new PassManager.


---
Diffs of the changes:  (+5 -0)

 Pass.h |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/include/llvm/Pass.h
diff -u llvm/include/llvm/Pass.h:1.59 llvm/include/llvm/Pass.h:1.60
--- llvm/include/llvm/Pass.h:1.59	Tue Dec 12 20:36:01 2006
+++ llvm/include/llvm/Pass.h	Wed Dec 13 14:03:48 2006
@@ -355,6 +355,11 @@
 /// @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,






More information about the llvm-commits mailing list