| 1 | // RUN: rm -rf %t |
|---|---|
| 2 | // 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 |
| 3 | // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -fsyntax-only -I %S/Inputs -include-pch %t.pch %s -verify |
| 4 | // expected-no-diagnostics |
| 5 | |
| 6 | int test(int x) { |
| 7 | return my_fabs(x) + fabs(x); |
| 8 | } |
| 9 | |
| 10 |