[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/fma.ll

John Criswell criswell at cs.uiuc.edu
Thu May 12 14:06:23 PDT 2005



Changes in directory llvm/test/Regression/CodeGen/PowerPC:

fma.ll updated: 1.3 -> 1.4
---
Log message:

Fix this test on Solaris.
Solaris grep is more traditional and (AFAIK) does not support regexs.
Also, single quotes should disable all shell interpretation, so no
backslashes should be needed (and, in fact, keep Solaris from working).


---
Diffs of the changes:  (+1 -1)

 fma.ll |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/test/Regression/CodeGen/PowerPC/fma.ll
diff -u llvm/test/Regression/CodeGen/PowerPC/fma.ll:1.3 llvm/test/Regression/CodeGen/PowerPC/fma.ll:1.4
--- llvm/test/Regression/CodeGen/PowerPC/fma.ll:1.3	Fri Apr 15 23:25:48 2005
+++ llvm/test/Regression/CodeGen/PowerPC/fma.ll	Thu May 12 16:06:05 2005
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=ppc32 | grep 'fn\?madd\|fn\?msub' | wc -l | grep 7
+; RUN: llvm-as < %s | llc -march=ppc32 | egrep 'fn?madd|fn?msub' | wc -l | grep 7
 
 double %test_FMADD1(double %A, double %B, double %C) {
 	%D = mul double %A, %B






More information about the llvm-commits mailing list