diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-15 00:54:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-15 00:54:16 +0000 |
commit | 9814bc62431f322d2ac36d7e304a1c4e1b6040ed (patch) | |
tree | f8f114f3c4eede6d83ef9551a7184c5bd0faa24c /test/Transforms | |
parent | 853418d158ea6ea7f1001b877490e4c79c1da7c2 (diff) | |
download | external_llvm-9814bc62431f322d2ac36d7e304a1c4e1b6040ed.zip external_llvm-9814bc62431f322d2ac36d7e304a1c4e1b6040ed.tar.gz external_llvm-9814bc62431f322d2ac36d7e304a1c4e1b6040ed.tar.bz2 |
update to new t-d strings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34290 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/InstCombine/cast-malloc.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/cast-malloc.ll b/test/Transforms/InstCombine/cast-malloc.ll index e863197..565787c 100644 --- a/test/Transforms/InstCombine/cast-malloc.ll +++ b/test/Transforms/InstCombine/cast-malloc.ll @@ -5,7 +5,7 @@ ; The target datalayout is important for this test case. We have to tell ; instcombine that the ABI alignment for a long is 4-bytes, not 8, otherwise ; it won't do the transform. -target datalayout = "e-l:32:64" +target datalayout = "e-i64:32:64" int* %test(uint %size) { %X = malloc long, uint %size %ret = bitcast long* %X to int* |