diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/PCH/pch-dir.c | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/PCH/pch-dir.c')
-rw-r--r-- | test/PCH/pch-dir.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/PCH/pch-dir.c b/test/PCH/pch-dir.c index ae841ce..2ac10ea 100644 --- a/test/PCH/pch-dir.c +++ b/test/PCH/pch-dir.c @@ -3,14 +3,14 @@ // RUN: %clang -x c-header %S/pch-dir.h -DFOO=bar -o %t.h.gch/cbar.gch // RUN: %clang -x c++-header -std=c++98 %S/pch-dir.h -o %t.h.gch/cpp.gch // RUN: %clang -include %t.h -DFOO=foo -fsyntax-only %s -Xclang -print-stats 2> %t.clog -// RUN: FileCheck -check-prefix=C %s < %t.clog +// RUN: FileCheck -check-prefix=CHECK-C %s < %t.clog // RUN: %clang -include %t.h -DFOO=bar -DBAR=bar -fsyntax-only %s -Xclang -ast-print > %t.cbarlog -// RUN: FileCheck -check-prefix=CBAR %s < %t.cbarlog +// RUN: FileCheck -check-prefix=CHECK-CBAR %s < %t.cbarlog // RUN: %clang -x c++ -include %t.h -std=c++98 -fsyntax-only %s -Xclang -print-stats 2> %t.cpplog -// RUN: FileCheck -check-prefix=CPP %s < %t.cpplog +// RUN: FileCheck -check-prefix=CHECK-CPP %s < %t.cpplog // RUN: not %clang -x c++ -std=c++11 -include %t.h -fsyntax-only %s 2> %t.cpp11log -// RUN: FileCheck -check-prefix=CPP11 %s < %t.cpp11log +// RUN: FileCheck -check-prefix=CHECK-CPP11 %s < %t.cpp11log // CHECK-CBAR: int bar int FOO; |