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 | bda134910ab021c647ed05bfba8176cba4696c82 (patch) | |
tree | 8c53b77bf126fed94ad8dc3f2da62b2082aeff46 /lib/Target/Target.cpp | |
parent | 635656e23174cea675e9d4352c43143129740b5e (diff) |
[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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Target.cpp')
-rw-r--r-- | lib/Target/Target.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Target.cpp b/lib/Target/Target.cpp index 4b51b3f7eea..f4aeb657cc3 100644 --- a/lib/Target/Target.cpp +++ b/lib/Target/Target.cpp @@ -19,7 +19,7 @@ #include "llvm/IR/Value.h" #include "llvm/InitializePasses.h" #include "llvm/PassManager.h" -#include "llvm/Target/TargetLibraryInfo.h" +#include "llvm/Analysis/TargetLibraryInfo.h" #include <cstring> using namespace llvm; |