[llvm-commits] [llvm] r60485 - in /llvm/trunk/test/CodeGen/CellSPU: call_indirect.ll fdiv.ll immed32.ll immed64.ll vec_const.ll vecinsert.ll

Rafael Espindola rafael.espindola at gmail.com
Wed Dec 3 09:15:07 PST 2008


Author: rafael
Date: Wed Dec  3 11:14:56 2008
New Revision: 60485

URL: http://llvm.org/viewvc/llvm-project?rev=60485&view=rev
Log:
Fix some tests. The grep for "il" was matching "file".

Modified:
    llvm/trunk/test/CodeGen/CellSPU/call_indirect.ll
    llvm/trunk/test/CodeGen/CellSPU/fdiv.ll
    llvm/trunk/test/CodeGen/CellSPU/immed32.ll
    llvm/trunk/test/CodeGen/CellSPU/immed64.ll
    llvm/trunk/test/CodeGen/CellSPU/vec_const.ll
    llvm/trunk/test/CodeGen/CellSPU/vecinsert.ll

Modified: llvm/trunk/test/CodeGen/CellSPU/call_indirect.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/call_indirect.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/call_indirect.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/call_indirect.ll Wed Dec  3 11:14:56 2008
@@ -11,7 +11,7 @@
 ; RUN: grep iohl    %t2.s | count 2
 ; RUN: grep rotqby  %t2.s | count 6
 ; RUN: grep lqd     %t2.s | count 18
-; RUN: grep il      %t2.s | count 2
+; RUN: grep ilhu    %t2.s | count 2
 ; RUN: grep ai      %t2.s | count 9
 ; RUN: grep dispatch_tab %t2.s | count 6
 

Modified: llvm/trunk/test/CodeGen/CellSPU/fdiv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/fdiv.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/fdiv.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/fdiv.ll Wed Dec  3 11:14:56 2008
@@ -1,6 +1,6 @@
 ; RUN: llvm-as -o - %s | llc -march=cellspu > %t1.s
 ; RUN: grep frest    %t1.s | count 2 
-; RUN: grep fi       %t1.s | count 2 
+; RUN: grep -w fi    %t1.s | count 2 
 ; RUN: grep fm       %t1.s | count 4 
 ; RUN: grep fma      %t1.s | count 2 
 ; RUN: grep fnms     %t1.s | count 2

Modified: llvm/trunk/test/CodeGen/CellSPU/immed32.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/immed32.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/immed32.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/immed32.ll Wed Dec  3 11:14:56 2008
@@ -1,7 +1,7 @@
 ; RUN: llvm-as -o - %s | llc -march=cellspu > %t1.s
 ; RUN: grep ilhu  %t1.s | count 8
 ; RUN: grep iohl  %t1.s | count 6
-; RUN: grep il    %t1.s | count 11
+; RUN: grep -w il    %t1.s | count 3
 ; RUN: grep 16429 %t1.s | count 1
 ; RUN: grep 63572 %t1.s | count 1
 ; RUN: grep   128 %t1.s | count 1

Modified: llvm/trunk/test/CodeGen/CellSPU/immed64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/immed64.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/immed64.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/immed64.ll Wed Dec  3 11:14:56 2008
@@ -1,6 +1,8 @@
 ; RUN: llvm-as -o - %s | llc -march=cellspu > %t1.s
 ; RUN: grep lqa        %t1.s | count 13
-; RUN: grep il         %t1.s | count 22
+; RUN: grep ilhu       %t1.s | count 15
+; RUN: grep ila        %t1.s | count 1
+; RUN: grep -w il      %t1.s | count 6
 ; RUN: grep shufb      %t1.s | count 13
 ; RUN: grep      65520 %t1.s | count  1
 ; RUN: grep      43981 %t1.s | count  1

Modified: llvm/trunk/test/CodeGen/CellSPU/vec_const.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/vec_const.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/vec_const.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/vec_const.ll Wed Dec  3 11:14:56 2008
@@ -1,8 +1,8 @@
 ; RUN: llvm-as -o - %s | llc -march=cellspu > %t1.s
 ; RUN: llvm-as -o - %s | llc -march=cellspu -mattr=large_mem > %t2.s
-; RUN: grep il     %t1.s | count 16
+; RUN: grep -w il  %t1.s | count 3
 ; RUN: grep ilhu   %t1.s | count 8
-; RUN: grep ilh    %t1.s | count 13
+; RUN: grep -w ilh %t1.s | count 5
 ; RUN: grep iohl   %t1.s | count 7
 ; RUN: grep lqa    %t1.s | count 6
 ; RUN: grep 24672  %t1.s | count 2

Modified: llvm/trunk/test/CodeGen/CellSPU/vecinsert.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CellSPU/vecinsert.ll?rev=60485&r1=60484&r2=60485&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/CellSPU/vecinsert.ll (original)
+++ llvm/trunk/test/CodeGen/CellSPU/vecinsert.ll Wed Dec  3 11:14:56 2008
@@ -2,8 +2,8 @@
 ; RUN: grep cbd     %t1.s | count 5
 ; RUN: grep chd     %t1.s | count 5
 ; RUN: grep cwd     %t1.s | count 10
-; RUN: grep il      %t1.s | count 15
-; RUN: grep ilh     %t1.s | count 10
+; RUN: grep -w il   %t1.s | count 5
+; RUN: grep -w ilh  %t1.s | count 6
 ; RUN: grep iohl    %t1.s | count 1
 ; RUN: grep ilhu    %t1.s | count 4
 ; RUN: grep shufb   %t1.s | count 26





More information about the llvm-commits mailing list