Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Driver / hello.c
blobda628724d6d947bb6abe9e574050db0f0fed362e
1 // RUN: %clang -ccc-echo -o %t %s 2> %t.log
3 // Make sure we used clang.
4 // RUN: grep 'clang" -cc1 .*hello.c' %t.log
6 // RUN: %t > %t.out
7 // RUN: grep "I'm a little driver, short and stout." %t.out
9 // FIXME: We don't have a usable assembler on Windows, so we can't build real
10 // apps yet.
11 // XFAIL: win32
13 #include <stdio.h>
15 int main() {
16 printf("I'm a little driver, short and stout.");
17 return 0;