blob: 608c95d828ed78bae64f937c5285f9625639381e [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm-only
Eli Friedmanc0131182009-12-03 20:31:57 +00002
3extern const int a,b;
4const int a=b,b=a;
5int c() { if (a) return 1; return 0; }