diff options
author | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-26 19:40:34 +0000 |
---|---|---|
committer | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-26 19:40:34 +0000 |
commit | 51fa0a87c3e6e5af33ad34b4e554fbf18a97ef56 (patch) | |
tree | d5eb42615ea961f0023fb4936f16297e5dc1ff44 /llvm/test/CodeGen/PowerPC | |
parent | 04df8ee55eb9a04783bc66c44d17ef36097e5a9b (diff) | |
download | bcm5719-llvm-51fa0a87c3e6e5af33ad34b4e554fbf18a97ef56.tar.gz bcm5719-llvm-51fa0a87c3e6e5af33ad34b4e554fbf18a97ef56.zip |
Fix tests that used CHECK-NEXT-NOT and CHECK-DAG-NOT.
FileCheck actually doesn't support combo suffixes.
Differential Revision: http://reviews.llvm.org/D17588
llvm-svn: 262054
Diffstat (limited to 'llvm/test/CodeGen/PowerPC')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/fdiv-combine.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/PowerPC/fdiv-combine.ll b/llvm/test/CodeGen/PowerPC/fdiv-combine.ll index d3dc3fe913f..3aac7032c69 100644 --- a/llvm/test/CodeGen/PowerPC/fdiv-combine.ll +++ b/llvm/test/CodeGen/PowerPC/fdiv-combine.ll @@ -9,8 +9,8 @@ target triple = "powerpc64-unknown-linux-gnu" define void @three_fdiv_double(double %D, double %a, double %b, double %c) #0 { ; CHECK-LABEL: three_fdiv_double: -; CHECK: fdiv -; CHECK-NEXT-NOT: fdiv +; CHECK: fdiv {{[0-9]}} +; CHECK-NOT: fdiv ; CHECK: fmul ; CHECK: fmul ; CHECK: fmul @@ -23,9 +23,9 @@ define void @three_fdiv_double(double %D, double %a, double %b, double %c) #0 { define void @two_fdiv_double(double %D, double %a, double %b) #0 { ; CHECK-LABEL: two_fdiv_double: -; CHECK: fdiv -; CHECK: fdiv -; CHECK-NEXT-NOT: fmul +; CHECK: fdiv {{[0-9]}} +; CHECK: fdiv {{[0-9]}} +; CHECK-NOT: fmul %div = fdiv double %a, %D %div1 = fdiv double %b, %D tail call void @foo_2d(double %div, double %div1) |