mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-29 15:04:57 +00:00
60f1563256
- Only focusing on llvm_gcc_c for now, eventually this needs to be refactored so it can be shared via all the gcc-like tools. llvm-svn: 59582
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;
|
|
}
|