mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
4f5ca6bbf4
llvm-svn: 81661
10 lines
161 B
C
10 lines
161 B
C
/*
|
|
* Check that the 'include' options work.
|
|
* RUN: echo "int x;\n" > %t1.inc
|
|
* RUN: llvmc -include %t1.inc -fsyntax-only %s
|
|
*/
|
|
|
|
int f0(void) {
|
|
return x;
|
|
}
|