diff options
author | John Criswell <criswell@uiuc.edu> | 2005-05-12 21:06:05 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-05-12 21:06:05 +0000 |
commit | 32b30a3c239e682b7fae39ebd9c4b121f5865810 (patch) | |
tree | 5089975fc1be8ffb2d715a7fffa38b54a6e97969 | |
parent | b15a8f5f8c986b1761993792bb5654a2b7abbbfa (diff) |
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).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21902 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/PowerPC/fma.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/fma.ll b/test/CodeGen/PowerPC/fma.ll index ed93633f7f..794fa08742 100644 --- a/test/CodeGen/PowerPC/fma.ll +++ b/test/CodeGen/PowerPC/fma.ll @@ -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 |