r211856 - Account for differences in grep implementations
Alp Toker
alp at nuanti.com
Thu Jun 26 20:11:38 PDT 2014
Author: alp
Date: Thu Jun 26 22:11:38 2014
New Revision: 211856
URL: http://llvm.org/viewvc/llvm-project?rev=211856&view=rev
Log:
Account for differences in grep implementations
Modified:
cfe/trunk/test/Frontend/ir-support.c
Modified: cfe/trunk/test/Frontend/ir-support.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/ir-support.c?rev=211856&r1=211855&r2=211856&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/ir-support.c (original)
+++ cfe/trunk/test/Frontend/ir-support.c Thu Jun 26 22:11:38 2014
@@ -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; }
More information about the cfe-commits
mailing list