mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
ff6477b720
- 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59582 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|