mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
83ced6c29a
don't care about leaks from tblgen, and I assume we don't care about valgrind errors in llvm-gcc/g++. llvm-svn: 99115
11 lines
179 B
C
11 lines
179 B
C
/*
|
|
* Check that the 'include' options work.
|
|
* RUN: echo "int x;\n" > %t1.inc
|
|
* RUN: llvmc -include %t1.inc -fsyntax-only %s
|
|
* XFAIL: vg_leak
|
|
*/
|
|
|
|
int f0(void) {
|
|
return x;
|
|
}
|