You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
406 B
10 lines
406 B
4 months ago
|
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -emit-pch -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -o %t.pch -I %S/Inputs -x objective-c-header %S/Inputs/pch-import-module-with-macro.pch
|
||
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -fsyntax-only -I %S/Inputs -include-pch %t.pch %s -verify
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
int test(int x) {
|
||
|
return my_fabs(x) + fabs(x);
|
||
|
}
|
||
|
|