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/Scalar/GVNSink.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/Scalar/GVNSink.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GVNSink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVNSink.cpp b/llvm/lib/Transforms/Scalar/GVNSink.cpp index 9d8a6d1c552..28c5940db1e 100644 --- a/llvm/lib/Transforms/Scalar/GVNSink.cpp +++ b/llvm/lib/Transforms/Scalar/GVNSink.cpp @@ -48,7 +48,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Analysis/GlobalsModRef.h" -#include "llvm/Analysis/Utils/Local.h" +#include "llvm/Transforms/Utils/Local.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/CFG.h" #include "llvm/IR/Constants.h" |