diff options
Diffstat (limited to 'test/Frontend/ast-main.c')
-rw-r--r-- | test/Frontend/ast-main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Frontend/ast-main.c b/test/Frontend/ast-main.c new file mode 100644 index 0000000000..a08eb6bf73 --- /dev/null +++ b/test/Frontend/ast-main.c @@ -0,0 +1,9 @@ +// RUN: clang -emit-llvm -S -o %t1.ll %s && +// RUN: clang -emit-ast -o %t.ast %s && +// RUN: clang -emit-llvm -S -o %t2.ll %t.ast && +// RUN: diff %t1.ll %t2.ll +// XFAIL: * + +int main() { + return 0; +} |