aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/builtinshufflevector.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-11-11 04:09:47 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-11-11 04:09:47 +0000
commitb5cac862e9d1de85c85159d0ef4ab8482441e660 (patch)
tree152fc6cf67099090d9c2cac5e6ed164bfd3ec65d /test/CodeGen/builtinshufflevector.c
parent55e874299f2ad827646a4ca9ea38c402aaeb38c9 (diff)
These tests have no needed to redirect stderr to stdout.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/builtinshufflevector.c')
-rw-r--r--test/CodeGen/builtinshufflevector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/builtinshufflevector.c b/test/CodeGen/builtinshufflevector.c
index 46741d3456..de499f8528 100644
--- a/test/CodeGen/builtinshufflevector.c
+++ b/test/CodeGen/builtinshufflevector.c
@@ -1,4 +1,4 @@
-// RUN: clang -emit-llvm < %s 2>&1 | grep 'shufflevector' | count 1
+// RUN: clang -emit-llvm < %s | grep 'shufflevector' | count 1
typedef int v4si __attribute__ ((vector_size (16)));
v4si a(v4si x, v4si y) {return __builtin_shufflevector(x, y, 3, 2, 5, 7);}