freebsd-dev/test/CodeGen/static-forward-decl.c
2009-06-02 17:58:47 +00:00

6 lines
130 B
C

// RUN: clang-cc %s -emit-llvm -o - -triple=i686-apple-darwin9 | grep "global i32 10"
static int i;
int*j=&i;
static int i = 10;