diff options
author | Micah Villmow <villmow@gmail.com> | 2012-10-05 17:02:14 +0000 |
---|---|---|
committer | Micah Villmow <villmow@gmail.com> | 2012-10-05 17:02:14 +0000 |
commit | bf07a512f2fd6bbcd0b217060656e9d12b9da5b0 (patch) | |
tree | 59e3f59fc9f88f6ed81de776c3d80f1c660d27ad /lib/Target/Target.cpp | |
parent | a06fd990543c82c4cc735354914ae4be64eb83d6 (diff) |
Implement TargetData with the DataLayout class, this will allow LLVM projects to transition to DataLayout without loosing functionality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165318 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 a2b83bcce4..d7793a7b6b 100644 --- a/lib/Target/Target.cpp +++ b/lib/Target/Target.cpp @@ -24,7 +24,7 @@ using namespace llvm; void llvm::initializeTarget(PassRegistry &Registry) { - initializeTargetDataPass(Registry); + initializeDataLayoutPass(Registry); initializeTargetLibraryInfoPass(Registry); } |