]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/2008-07-21-mixed-var-fn-decl.c
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / CodeGen / 2008-07-21-mixed-var-fn-decl.c
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3 int g0, f0();
4 int f1(), g1;
5
6 // CHECK: @g0 = common global i32 0, align 4
7 // CHECK: @g1 = common global i32 0, align 4
8