summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Scalar.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-08-30 23:03:45 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-08-30 23:03:45 +0000
commitf940a1a869b4fe6f857e7fd8aeb97e7b7e9b390e (patch)
treebc8c030ead7ee50957d7d24d68a4aa349b4b84c5 /include/llvm/Transforms/Scalar.h
parenteaca928a3798e1fa7072457b94eccdd5b53b5d5f (diff)
downloadllvm-f940a1a869b4fe6f857e7fd8aeb97e7b7e9b390e.tar.gz
llvm-f940a1a869b4fe6f857e7fd8aeb97e7b7e9b390e.tar.bz2
llvm-f940a1a869b4fe6f857e7fd8aeb97e7b7e9b390e.tar.xz
Remove the old tail duplication pass. It is not used and is unable to update
ssa, so it has to be run really early in the pipeline. Any replacement should probably use the SSAUpdater. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Scalar.h')
-rw-r--r--include/llvm/Transforms/Scalar.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h
index 2187d4eb76..b1536f906d 100644
--- a/include/llvm/Transforms/Scalar.h
+++ b/include/llvm/Transforms/Scalar.h
@@ -176,13 +176,6 @@ FunctionPass *createReassociatePass();
//===----------------------------------------------------------------------===//
//
-// TailDuplication - Eliminate unconditional branches through controlled code
-// duplication, creating simpler CFG structures.
-//
-FunctionPass *createTailDuplicationPass();
-
-//===----------------------------------------------------------------------===//
-//
// JumpThreading - Thread control through mult-pred/multi-succ blocks where some
// preds always go to some succ.
//