mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 22:06:06 +00:00

This reverts commit 74449ab86b8bc8d7388ede0cc7fc3a679da0c567. See the post commit message in https://github.com/llvm/llvm-project/pull/115416
48 lines
2.0 KiB
C
48 lines
2.0 KiB
C
// RUN: rm -rf %t.h.gch
|
|
// RUN: mkdir -p %t.h.gch
|
|
//
|
|
// RUN: %clang -x c-header %S/pch-dir.h -DFOO=foo -o %t.h.gch/c.gch
|
|
// 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=CHECK-C %s < %t.clog
|
|
// RUN: %clang -include %t.h -DFOO=bar -fsyntax-only %s -Xclang -ast-print > %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=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=CHECK-NO-SUITABLE %s < %t.cpp11log
|
|
|
|
// RUN: not %clang -include %t.h -fsyntax-only %s 2> %t.missinglog2
|
|
// RUN: FileCheck -check-prefix=CHECK-NO-SUITABLE %s < %t.missinglog2
|
|
// RUN: not %clang -include %t.h -DFOO=foo -DBAR=bar -fsyntax-only %s 2> %t.missinglog2
|
|
// RUN: FileCheck -check-prefix=CHECK-NO-SUITABLE %s < %t.missinglog2
|
|
|
|
// Don't crash if the precompiled header file is missing.
|
|
// RUN: not %clang_cc1 -include-pch %t.h.gch -DFOO=baz -fsyntax-only %s -print-stats 2> %t.missinglog
|
|
// RUN: FileCheck -check-prefix=CHECK-NO-SUITABLE %s < %t.missinglog
|
|
|
|
// Don't gch probe directories which contain no pch files.
|
|
// RUN: rm -rf %t.x.h.gch
|
|
// RUN: mkdir -p %t.x.h.gch
|
|
// RUN: not %clang -include %t.x.h -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-IGNORED-DIR %s
|
|
|
|
// CHECK-CBAR: int bar
|
|
int FOO;
|
|
|
|
int get(void) {
|
|
#ifdef __cplusplus
|
|
// CHECK-CPP: .h.gch{{[/\\]}}cpp.gch
|
|
return i;
|
|
#else
|
|
// CHECK-C: .h.gch{{[/\\]}}c.gch
|
|
return j;
|
|
#endif
|
|
}
|
|
|
|
// CHECK-NO-SUITABLE: no suitable precompiled header file found in directory
|
|
|
|
// CHECK-IGNORED-DIR: precompiled header directory '{{.*}}pch-dir.c.tmp.x.h.gch' was ignored because it contains no clang PCH files
|
|
// CHECK-IGNORED-DIR: '{{.*}}pch-dir.c.tmp.x.h' file not found
|