For PR1319:
authorReid Spencer <rspencer@reidspencer.com>
Sun, 15 Apr 2007 05:16:38 +0000 (05:16 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 15 Apr 2007 05:16:38 +0000 (05:16 +0000)
Convert to new test system. This exposes IsDigit.ll as failing.

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

test/Transforms/SimplifyLibCalls/2007-04-06-strchr-miscompile.ll
test/Transforms/SimplifyLibCalls/ExitInMain.ll
test/Transforms/SimplifyLibCalls/IsDigit.ll
test/Transforms/SimplifyLibCalls/MemSet.ll
test/Transforms/SimplifyLibCalls/Pow.ll
test/Transforms/SimplifyLibCalls/dg.exp
test/Transforms/SimplifyLibCalls/floor.ll

index 7c78355e6d2678172c958468f892c97f006c1303..5a56d24a35abe9a1ea0c7cee29159d235b880a81 100644 (file)
@@ -1,8 +1,9 @@
-; RUN: llvm-as < %s | opt -simplify-libcalls -instcombine | llvm-dis > %t &&
-; RUN: grep '@str,.*i64 3' %t && 
-; RUN: grep '@str1,.*i64 7' %t &&
-; RUN: grep 'ret i8.*null' %t
 ; PR1307
+; RUN: llvm-as < %s | opt -simplify-libcalls -instcombine | llvm-dis > %t
+; RUN: grep {@str,.*i64 3} %t
+; RUN: grep {@str1,.*i64 7} %t
+; RUN: grep {ret i8.*null} %t
+; END.
 
 @str = internal constant [5 x i8] c"foog\00"
 @str1 = internal constant [8 x i8] c"blahhh!\00"
index f8af2ecf802772da6f64d9fe3e12614f939125fd..13f1a1166e68e3c20e32aa16a6bbc7285ce6045b 100644 (file)
@@ -1,5 +1,7 @@
 ; Test that the ExitInMainOptimization pass works correctly
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | grep -c 'ret i32 3' | grep 1
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    grep -c {ret i32 3} | grep 1
+; END.
 
 declare void %exit(int)
 declare void %exitonly(int)
index 1386c14eadba4294504a5cf6f0338ee2ceab9567..bcdb60cc6f92dfb5d4db05fb7d1948dd0c8d966b 100644 (file)
@@ -1,5 +1,6 @@
 ; Test that the IsDigitOptimizer works correctly
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call' 
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:   not grep call
 
 declare int %isdigit(int)
 declare int %isascii(int)
index d31a36ae3c6c0d14582cf2285603e2b4793652c4..dbeef9d85efae2635a54a884364ef6bebc33dc6a 100644 (file)
@@ -1,17 +1,19 @@
 ; Test that the LLVMMemSetOptimizer works correctly
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call.*llvm.memset'
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:   not grep {call.*llvm.memset}
+; END.
 
-declare void %llvm.memset(sbyte*,ubyte,uint,uint)
+declare void %llvm.memset.i32(sbyte*,ubyte,uint,uint)
 
 implementation   ; Functions:
 
 int %main () {
   %target = alloca [1024 x sbyte]
   %target_p = getelementptr [1024 x sbyte]* %target, int 0, int 0
-  call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 0, uint 1)
-  call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 1, uint 1)
-  call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 2, uint 2)
-  call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 4, uint 4)
-  call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 8, uint 8)
+  call void %llvm.memset.i32(sbyte* %target_p, ubyte 1, uint 0, uint 1)
+  call void %llvm.memset.i32(sbyte* %target_p, ubyte 1, uint 1, uint 1)
+  call void %llvm.memset.i32(sbyte* %target_p, ubyte 1, uint 2, uint 2)
+  call void %llvm.memset.i32(sbyte* %target_p, ubyte 1, uint 4, uint 4)
+  call void %llvm.memset.i32(sbyte* %target_p, ubyte 1, uint 8, uint 8)
   ret int 0
 }
index df7d46004af587f87155ba072952b206d81a4bba..773ba1e1aee32c42ca101bcf49ce2617871573b6 100644 (file)
@@ -1,8 +1,9 @@
 ; Testcase for calls to the standard C "pow" function
 ;
 ; Equivalent to: http://gcc.gnu.org/ml/gcc-patches/2003-02/msg01786.html
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls -disable-output &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call double .pow'
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:   not grep {call double .pow}
+; END.
 
 declare double %pow(double, double)
 
index ff34508c3c64c167429097e1c896dd65daaff278..879685ca879df60056ae48bf4411e0df73b77dc5 100644 (file)
@@ -1,3 +1,3 @@
-load_lib llvm-dg.exp
+load_lib llvm.exp
 
-llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]]
+RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]]
index d1c6548822881613a6a9eee664df1e5bf9753887..06f159f0a086d90f0dd6904d5ea63efea59b27b9 100644 (file)
@@ -1,9 +1,15 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call.*floor(' &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | grep 'call.*floorf('
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call.*ceil(' &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | grep 'call.*ceilf('
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call.*nearbyint(' &&
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | grep 'call.*nearbyintf('
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    not grep {call.*floor(} &&
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    grep {call.*floorf(}
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    not grep {call.*ceil(} &&
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    grep {call.*ceilf(}
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    not grep {call.*nearbyint(} &&
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN:    grep {call.*nearbyintf(}
 ; XFAIL: sparc
 
 declare double %floor(double)