Files
clang-p2996/clang/test/CodeGen/no-common.c
Eric Christopher 690c2d1ed6 FileCheckize.
llvm-svn: 120647
2010-12-02 02:13:27 +00:00

7 lines
251 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-DEFAULT
// RUN: %clang_cc1 %s -fno-common -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-NOCOMMON
// CHECK-DEFAULT: @x = common global
// CHECK-NOCOMMON: @x = global
int x;