[PATCH] D78609: [llvm] [X86] Make test more robust against different builds

Aart Bik via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 21 23:57:47 PDT 2020


aartbik updated this revision to Diff 259173.
aartbik marked an inline comment as done.
aartbik added a comment.

dropped the stderr redirect, no longer needed


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D78609/new/

https://reviews.llvm.org/D78609

Files:
  llvm/test/CodeGen/X86/pr45563.ll


Index: llvm/test/CodeGen/X86/pr45563.ll
===================================================================
--- llvm/test/CodeGen/X86/pr45563.ll
+++ llvm/test/CodeGen/X86/pr45563.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -debug-only=isel -O3 -mattr=avx  2>&1 | FileCheck %s
+; RUN: llc < %s -O3 -mattr=avx | FileCheck %s
 
 ; Bug 45563:
 ; The LowerMLOAD() method AVX masked load branch should
@@ -12,7 +12,8 @@
 
 define <16 x double> @bug45563(<16 x double>* %addr, <16 x double> %dst, <16 x i64> %e, <16 x i64> %f) {
 ; CHECK-LABEL: bug45563:
-; CHECK:       v4f64 = vselect
+; CHECK:       vmaskmovpd
+; CHECK:       vblendvpd
   %mask = icmp slt <16 x i64> %e, %f
   %res = call <16 x double> @llvm.masked.load.v16f64.p0v16f64(<16 x double>* %addr, i32 4, <16 x i1>%mask, <16 x double> %dst)
   ret <16 x double> %res


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78609.259173.patch
Type: text/x-patch
Size: 817 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200422/a434e41e/attachment.bin>


More information about the llvm-commits mailing list