From c2dad95b1e57bf784edc80f94f3db9522a31e0ec Mon Sep 17 00:00:00 2001 From: Jonas Paulsson Date: Wed, 12 Apr 2017 14:25:08 +0000 Subject: [PATCH] Fix a RUN line in new test. Use '2>&1 |' and not '|&' to pipe debug output to FileCheck Hopefully handles a "shell parser error" on llvm-clang-x86_64-expensive-checks-win test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300064 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll b/test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll index 535003ae6f0..1a32f659066 100644 --- a/test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll +++ b/test/Transforms/SLPVectorizer/SystemZ/SLP-cmp-cost-query.ll @@ -1,6 +1,6 @@ ; REQUIRES: asserts ; RUN: opt -mtriple=systemz-unknown -mcpu=z13 -slp-vectorizer -debug-only=SLP \ -; RUN: -S -disable-output < %s |& FileCheck %s +; RUN: -S -disable-output < %s 2>&1 | FileCheck %s ; ; Check that SLP vectorizer gets the right cost difference for a compare ; node. -- 2.40.0