Add targetdata strings to these tests, since SimplifyLibCalls uses
authorDan Gohman <gohman@apple.com>
Wed, 19 Aug 2009 23:18:49 +0000 (23:18 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 19 Aug 2009 23:18:49 +0000 (23:18 +0000)
TargetData to find the pointer size.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79490 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/SimplifyLibCalls/FPrintF.ll
test/Transforms/SimplifyLibCalls/Puts.ll
test/Transforms/SimplifyLibCalls/SPrintF.ll
test/Transforms/SimplifyLibCalls/StrCat.ll
test/Transforms/SimplifyLibCalls/StrChr.ll
test/Transforms/SimplifyLibCalls/StrCpy.ll
test/Transforms/SimplifyLibCalls/StrNCat.ll
test/Transforms/SimplifyLibCalls/StrNCpy.ll

index ac6b3c1f709783b9e3913d2bddbe83971fdf6c6b..2ac9f14497dc088730a73bc81e59354855ebffc9 100644 (file)
@@ -1,7 +1,10 @@
 ; Test that the FPrintFOptimizer works correctly
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*fprintf}
-;
+
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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 }
index e9bb2b381c9877b9b43a0b974339bff8d7e0bc29..6753db8798c37d9b3fac6cab73bb21029bfbb699 100644 (file)
@@ -1,7 +1,10 @@
 ; Test that the PutsCatOptimizer works correctly
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*fputs}
-;
+
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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 }
index 53f5ef1f429ef3b675eade3f7e8aa51a8918af8c..6b1525651b757255a0af38d6868ebd7d4d974567 100644 (file)
@@ -2,6 +2,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*sprintf}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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]
 @null_hello = constant [7 x i8] c"\00hello\00"         ; <[7 x i8]*> [#uses=1]
index 89ef4ea49a79b75352f650fe2a8e92894e1f48d6..a2e1f3af2f656c1d70efc537216b45c4100091a0 100644 (file)
@@ -5,6 +5,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   grep {puts.*%arg1}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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]
 @null_hello = constant [7 x i8] c"\00hello\00"         ; <[7 x i8]*> [#uses=1]
index 802639f723208e690132aa5c64489fc9ca653bc9..89e846f3bf8cce740fee37f2666d1db5ee0d10c0 100644 (file)
@@ -2,6 +2,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*@strchr}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+target datalayout = "-p:64:64:64"
+
 @hello = constant [14 x i8] c"hello world\5Cn\00"              ; <[14 x i8]*> [#uses=1]
 @null = constant [1 x i8] zeroinitializer              ; <[1 x i8]*> [#uses=1]
 
index f23582c46206731d2b2dc8fbfe8c59cb70404eb1..9dc01b326e749a6e5c66e9d29b58818f790031ea 100644 (file)
@@ -2,6 +2,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*strcpy}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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]
 @null_hello = constant [7 x i8] c"\00hello\00"         ; <[7 x i8]*> [#uses=1]
index 0ce319c5e8f329ec36b11187f451e2199b6313fb..7ae7097c38eec3d6cb97bf8f833779308c696cf6 100644 (file)
@@ -4,6 +4,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   grep {puts.*%arg1}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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]
 @null_hello = constant [7 x i8] c"\00hello\00"         ; <[7 x i8]*> [#uses=1]
index 011e9be94cbe35b6e12f87300faa610d7392b308..b3b66b0ed814d8b0d3ad3c7641c60d1c4933b43f 100644 (file)
@@ -2,6 +2,10 @@
 ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | \
 ; RUN:   not grep {call.*strncpy}
 
+; This transformation requires the pointer size, as it assumes that size_t is
+; the size of a pointer.
+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]
 @null_hello = constant [7 x i8] c"\00hello\00"         ; <[7 x i8]*> [#uses=1]