[llvm-commits] CVS: llvm/include/llvm/Transforms/Scalar.h

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 5 14:16:01 PDT 2003


Changes in directory llvm/include/llvm/Transforms:

Scalar.h updated: 1.25 -> 1.26

---
Log message:

Add new prototype for createLowerInvokePass().  Make simplifycfg be a 
functionpass


---
Diffs of the changes:

Index: llvm/include/llvm/Transforms/Scalar.h
diff -u llvm/include/llvm/Transforms/Scalar.h:1.25 llvm/include/llvm/Transforms/Scalar.h:1.26
--- llvm/include/llvm/Transforms/Scalar.h:1.25	Tue Sep 30 13:37:49 2003
+++ llvm/include/llvm/Transforms/Scalar.h	Sun Oct  5 14:15:13 2003
@@ -197,7 +197,7 @@
 // CFG Simplification - Merge basic blocks, eliminate unreachable blocks,
 // simplify terminator instructions, etc...
 //
-Pass *createCFGSimplificationPass();
+FunctionPass *createCFGSimplificationPass();
 
 
 //===----------------------------------------------------------------------===//
@@ -260,6 +260,15 @@
 // branch instructions.
 //
 FunctionPass *createLowerSwitchPass();
+
+
+//===----------------------------------------------------------------------===//
+// This pass converts 'invoke' instructions calls, and 'unwind' instructions
+// into calls to abort().
+//
+FunctionPass *createLowerInvokePass();
+
+
 
 //===----------------------------------------------------------------------===//
 //





More information about the llvm-commits mailing list