diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-14 02:33:58 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-14 02:33:58 +0000 |
commit | 019b92a70c11319f5ab96c9f5e66e4e111a972f8 (patch) | |
tree | fd0d99f80ea76706e99493608a230360ec8d5ddb /include/llvm/Transforms/Utils/FunctionUtils.h | |
parent | ffb15de60e839635d8628b0f4543638239bee39a (diff) |
Start the process of making MachineLoopInfo possible by templating Loop.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils/FunctionUtils.h')
-rw-r--r-- | include/llvm/Transforms/Utils/FunctionUtils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Utils/FunctionUtils.h b/include/llvm/Transforms/Utils/FunctionUtils.h index cf8abdf800..078fab0040 100644 --- a/include/llvm/Transforms/Utils/FunctionUtils.h +++ b/include/llvm/Transforms/Utils/FunctionUtils.h @@ -14,13 +14,13 @@ #ifndef LLVM_TRANSFORMS_UTILS_FUNCTION_H #define LLVM_TRANSFORMS_UTILS_FUNCTION_H -#include <llvm/Analysis/Dominators.h> +#include "llvm/Analysis/Dominators.h" +#include "llvm/Analysis/LoopInfo.h" #include <vector> namespace llvm { class BasicBlock; class Function; - class Loop; /// ExtractCodeRegion - rip out a sequence of basic blocks into a new function /// |