diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-27 08:18:08 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-27 08:18:08 +0000 |
commit | eb42eebee8f3f95def3b8fb40eb7dfe8f2ddc69d (patch) | |
tree | 7b435214223fbe72eba5759154299cf5dde36cda /llvm | |
parent | fc2bdccfcd2f2524914815bdb48129fb0e990377 (diff) | |
download | bcm5719-llvm-eb42eebee8f3f95def3b8fb40eb7dfe8f2ddc69d.tar.gz bcm5719-llvm-eb42eebee8f3f95def3b8fb40eb7dfe8f2ddc69d.zip |
llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll: Fix datalayout since r168516.
llvm-svn: 168689
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Transforms/SimplifyLibCalls/FPrintF.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/SimplifyLibCalls/FPuts.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/SimplifyLibCalls/FPrintF.ll b/llvm/test/Transforms/SimplifyLibCalls/FPrintF.ll index 0cd086ab0bb..100f31e54e7 100644 --- a/llvm/test/Transforms/SimplifyLibCalls/FPrintF.ll +++ b/llvm/test/Transforms/SimplifyLibCalls/FPrintF.ll @@ -4,7 +4,7 @@ ; This transformation requires the pointer size, as it assumes that size_t is ; the size of a pointer. -target datalayout = "-p:64:64:64" +target datalayout = "p:64:64:64" %struct._IO_FILE = type { i32, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, %struct._IO_marker*, %struct._IO_FILE*, i32, i32, i32, i16, i8, [1 x i8], i8*, i64, i8*, i8*, i32, [52 x i8] } %struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, i32 } diff --git a/llvm/test/Transforms/SimplifyLibCalls/FPuts.ll b/llvm/test/Transforms/SimplifyLibCalls/FPuts.ll index 8be990024ac..c3ca4a51588 100644 --- a/llvm/test/Transforms/SimplifyLibCalls/FPuts.ll +++ b/llvm/test/Transforms/SimplifyLibCalls/FPuts.ll @@ -4,7 +4,7 @@ ; This transformation requires the pointer size, as it assumes that size_t is ; the size of a pointer. -target datalayout = "-p:64:64:64" +target datalayout = "p:64:64:64" %struct._IO_FILE = type { i32, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, %struct._IO_marker*, %struct._IO_FILE*, i32, i32, i32, i16, i8, [1 x i8], i8*, i64, i8*, i8*, i32, [52 x i8] } %struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, i32 } diff --git a/llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll b/llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll index b152e00e5cd..00ce52a6986 100644 --- a/llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll +++ b/llvm/test/Transforms/SimplifyLibCalls/SPrintF.ll @@ -5,7 +5,7 @@ ; This transformation requires the pointer size, as it assumes that size_t is ; the size of a pointer. -target datalayout = "-p:64:64:64" +target datalayout = "p:64:64:64" @hello = constant [6 x i8] c"hello\00" ; <[6 x i8]*> [#uses=1] @null = constant [1 x i8] zeroinitializer ; <[1 x i8]*> [#uses=1] |