summaryrefslogtreecommitdiff
path: root/release_23/include/llvm/Transforms/Utils/FunctionUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/include/llvm/Transforms/Utils/FunctionUtils.h')
-rw-r--r--release_23/include/llvm/Transforms/Utils/FunctionUtils.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/release_23/include/llvm/Transforms/Utils/FunctionUtils.h b/release_23/include/llvm/Transforms/Utils/FunctionUtils.h
deleted file mode 100644
index 09afebeab790..000000000000
--- a/release_23/include/llvm/Transforms/Utils/FunctionUtils.h
+++ /dev/null
@@ -1,41 +0,0 @@
-//===-- Transform/Utils/FunctionUtils.h - Function Utils --------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This family of transformations manipulate LLVM functions.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TRANSFORMS_UTILS_FUNCTION_H
-#define LLVM_TRANSFORMS_UTILS_FUNCTION_H
-
-#include "llvm/Analysis/Dominators.h"
-#include "llvm/Analysis/LoopInfo.h"
-#include <vector>
-
-namespace llvm {
- class BasicBlock;
- class Function;
-
- /// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
- ///
- Function* ExtractCodeRegion(DominatorTree& DT,
- const std::vector<BasicBlock*> &code,
- bool AggregateArgs = false);
-
- /// ExtractLoop - rip out a natural loop into a new function
- ///
- Function* ExtractLoop(DominatorTree& DT, Loop *L,
- bool AggregateArgs = false);
-
- /// ExtractBasicBlock - rip out a basic block into a new function
- ///
- Function* ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs = false);
-}
-
-#endif