aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-01-31 01:02:32 +0000
committerChris Lattner <sabre@nondot.org>2002-01-31 01:02:32 +0000
commit2d4fe48b17adba604740800302f19fcc11bbdf34 (patch)
treeec3d37ea87f3fd7411ade30ece9787a05395dc9b
parentfcc93d2c0aece88c79648be3b76f98ee9e29e826 (diff)
Remove this file. Folded into UnifyMethodExitNodes pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1612 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/SimplifyCFG.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/llvm/Analysis/SimplifyCFG.h b/include/llvm/Analysis/SimplifyCFG.h
deleted file mode 100644
index 062d16a2de..0000000000
--- a/include/llvm/Analysis/SimplifyCFG.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//===- llvm/Analysis/SimplifyCFG.h - CFG Simplification XForms ---*- C++ -*--=//
-//
-// This file provides several routines that are useful for simplifying CFGs in
-// various ways...
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_ANALYSIS_SIMPLIFY_CFG_H
-#define LLVM_ANALYSIS_SIMPLIFY_CFG_H
-
-class BasicBlock;
-class Method;
-
-namespace cfg {
-
- // UnifyAllExitNodes - Unify all exit nodes of the CFG by creating a new
- // BasicBlock, and converting all returns to unconditional branches to this
- // new basic block. The singular exit node is returned.
- //
- // If there are no return stmts in the Method, a null pointer is returned.
- //
- BasicBlock *UnifyAllExitNodes(Method *M);
-
-} // End Namespace cfg
-
-
-#endif