summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-06-27 03:11:38 +0000
committerAlp Toker <alp@nuanti.com>2014-06-27 03:11:38 +0000
commit819fcd9bbd44eeef7c122bc372b3b51c4df82b32 (patch)
tree3da55226bf76937df584db0011c0cee33fee9ebd
parent0f771a8da0974e69c37a170a7e8addb2a520aff4 (diff)
downloadclang-819fcd9bbd44eeef7c122bc372b3b51c4df82b32.tar.gz
clang-819fcd9bbd44eeef7c122bc372b3b51c4df82b32.tar.bz2
clang-819fcd9bbd44eeef7c122bc372b3b51c4df82b32.tar.xz
Account for differences in grep implementations
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211856 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Frontend/ir-support.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Frontend/ir-support.c b/test/Frontend/ir-support.c
index f6078e56b9..f69161e870 100644
--- a/test/Frontend/ir-support.c
+++ b/test/Frontend/ir-support.c
@@ -4,16 +4,16 @@
// We strip differing '.file' directives before comparing.
// Reference output:
-// RUN: %clang_cc1 -S -o - %s | grep -v '\t\.file' > %t.s
+// RUN: %clang_cc1 -S -o - %s | grep -v '\.file' > %t.s
// LLVM bitcode:
// RUN: %clang_cc1 -emit-llvm-bc -o %t.bc %s
-// RUN: %clang_cc1 -S -o - %t.bc | grep -v '\t\.file' > %t.bc.s
+// RUN: %clang_cc1 -S -o - %t.bc | grep -v '\.file' > %t.bc.s
// RUN: diff %t.s %t.bc.s
// LLVM IR source code:
// RUN: %clang_cc1 -emit-llvm -o %t.ll %s
-// RUN: %clang_cc1 -S -o - %t.ll | grep -v '\t\.file' > %t.ll.s
+// RUN: %clang_cc1 -S -o - %t.ll | grep -v '\.file' > %t.ll.s
// RUN: diff %t.s %t.ll.s
int f() { return 0; }