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/InlineFunction.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/InlineFunction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index 1e15a4b5d51..0315aac1cf8 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -29,7 +29,7 @@ #include "llvm/Analysis/EHPersonalities.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/Analysis/ProfileSummaryInfo.h" -#include "llvm/Analysis/Utils/Local.h" +#include "llvm/Transforms/Utils/Local.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/IR/Argument.h" #include "llvm/IR/BasicBlock.h" |