diff options
author | David Blaikie <dblaikie@gmail.com> | 2018-06-04 21:23:21 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2018-06-04 21:23:21 +0000 |
commit | 31b98d2e9935eb199744929ecebbc445e8e2036d (patch) | |
tree | 377ca9497cc467f2cec6d460e26f8701c533ef77 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | f5db3a15bf6c57343165374d38f389e41012d91e (diff) | |
download | bcm5719-llvm-31b98d2e9935eb199744929ecebbc445e8e2036d.tar.gz bcm5719-llvm-31b98d2e9935eb199744929ecebbc445e8e2036d.zip |
Move Analysis/Utils/Local.h back to Transforms
Review feedback from r328165. Split out just the one function from the
file that's used by Analysis. (As chandlerc pointed out, the original
change only moved the header and not the implementation anyway - which
was fine for the one function that was used (since it's a
template/inlined in the header) but not in general)
llvm-svn: 333954
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index b33f4f8a810..970494eb470 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -52,7 +52,7 @@ #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" -#include "llvm/Analysis/Utils/Local.h" +#include "llvm/Transforms/Utils/Local.h" #include "llvm/IR/CFG.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DataLayout.h" |