From 9402d58e5bbe6744d871ca0e63964fac0538aa85 Mon Sep 17 00:00:00 2001 From: Richard Trieu Date: Thu, 10 Mar 2016 04:04:12 +0000 Subject: [PATCH] Disable failing test and fix RUN line. See https://llvm.org/bugs/show_bug.cgi?id=26894 for details. This change fixes the incorrect flags to Clang and the piping issue. It also disables the FileCheck portion of the test, which is currently failing. llvm-svn: 263091 --- clang/test/CodeGen/arm_neon_intrinsics.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clang/test/CodeGen/arm_neon_intrinsics.c b/clang/test/CodeGen/arm_neon_intrinsics.c index ca04fed..910a5e2 100644 --- a/clang/test/CodeGen/arm_neon_intrinsics.c +++ b/clang/test/CodeGen/arm_neon_intrinsics.c @@ -1,6 +1,7 @@ // RUN: %clang_cc1 -triple thumbv7s-apple-darwin -target-abi apcs-gnu\ -// RUN: -target-cpu swift -ffreestanding -emit-llvm -S -o - %s\ -// RUN: opt -S -mem2reg | FileCheck %s +// RUN: -target-cpu swift -ffreestanding -emit-llvm -o - %s\ +// RUN: | opt -S -mem2reg > /dev/null +// RxUN: | FileCheck %s // REQUIRES: long_tests -- 2.7.4