diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 18:56:34 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 18:56:34 +0000 |
commit | c67516298978aa1cd6c53e436339e3fff444e2fb (patch) | |
tree | c8f4a383b48926b4bfaf100be0ced8173e8a18f9 /llvm/unittests/IR/LegacyPassManagerTest.cpp | |
parent | f62bcc0d9cd4060ed295e032a336bb75f7a11eef (diff) | |
download | bcm5719-llvm-c67516298978aa1cd6c53e436339e3fff444e2fb.tar.gz bcm5719-llvm-c67516298978aa1cd6c53e436339e3fff444e2fb.zip |
Use a: and s: instead of a0: and s0: in the DataLayout strings.
They are equivalent and the size of 'a' and 's' is unused.
llvm-svn: 197259
Diffstat (limited to 'llvm/unittests/IR/LegacyPassManagerTest.cpp')
-rw-r--r-- | llvm/unittests/IR/LegacyPassManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/LegacyPassManagerTest.cpp b/llvm/unittests/IR/LegacyPassManagerTest.cpp index 00b7fd7cc56..91ab08ea109 100644 --- a/llvm/unittests/IR/LegacyPassManagerTest.cpp +++ b/llvm/unittests/IR/LegacyPassManagerTest.cpp @@ -412,7 +412,7 @@ namespace llvm { Module* mod = new Module("test-mem", getGlobalContext()); mod->setDataLayout("e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-" "i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-" - "a0:0:64-s0:64:64-f80:128:128"); + "a:0:64-s:64:64-f80:128:128"); mod->setTargetTriple("x86_64-unknown-linux-gnu"); // Type Definitions |