blob: a08eb6bf731e48fbad6d3dcc6c8576ded5b04b8f [file] [log] [blame]
Daniel Dunbar657f21b2009-09-21 05:16:43 +00001// RUN: clang -emit-llvm -S -o %t1.ll %s &&
2// RUN: clang -emit-ast -o %t.ast %s &&
3// RUN: clang -emit-llvm -S -o %t2.ll %t.ast &&
4// RUN: diff %t1.ll %t2.ll
5// XFAIL: *
6
7int main() {
8 return 0;
9}