mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 16:40:15 +00:00
10 lines
162 B
C
10 lines
162 B
C
|
/*
|
||
|
* Check that the 'include' options work.
|
||
|
* RUN: echo "int x;\n" > %t1.inc
|
||
|
* RUN: llvmc2 -include %t1.inc -fsyntax-only %s
|
||
|
*/
|
||
|
|
||
|
int f0(void) {
|
||
|
return x;
|
||
|
}
|