diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-15 02:16:27 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-15 02:16:27 +0000 |
commit | 62d4215baa395afa6cdc71cf4a21a306296379c7 (patch) | |
tree | 1d4f49ae2eb553f533c78c3e230533cce929beef /llvm/lib/Transforms/Utils/SimplifyInstructions.cpp | |
parent | 95b3880dd08daeddc616c2f10944ea07d20e2303 (diff) | |
download | bcm5719-llvm-62d4215baa395afa6cdc71cf4a21a306296379c7.tar.gz bcm5719-llvm-62d4215baa395afa6cdc71cf4a21a306296379c7.zip |
[PM] Move TargetLibraryInfo into the Analysis library.
While the term "Target" is in the name, it doesn't really have to do
with the LLVM Target library -- this isn't an abstraction which LLVM
targets generally need to implement or extend. It has much more to do
with modeling the various runtime libraries on different OSes and with
different runtime environments. The "target" in this sense is the more
general sense of a target of cross compilation.
This is in preparation for porting this analysis to the new pass
manager.
No functionality changed, and updates inbound for Clang and Polly.
llvm-svn: 226078
Diffstat (limited to 'llvm/lib/Transforms/Utils/SimplifyInstructions.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyInstructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp b/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp index cc97098d010..1cc40023a5c 100644 --- a/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp @@ -25,7 +25,7 @@ #include "llvm/IR/Function.h" #include "llvm/IR/Type.h" #include "llvm/Pass.h" -#include "llvm/Target/TargetLibraryInfo.h" +#include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/Transforms/Utils/Local.h" using namespace llvm; |