blob: a8f2b2b277317e52969a7d68a64057edd75f28fe [file] [log] [blame]
Eric Christopher7c923422010-12-02 02:13:27 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-DEFAULT
2// RUN: %clang_cc1 %s -fno-common -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-NOCOMMON
Daniel Dunbar069afd52009-03-26 16:37:00 +00003
Eric Christopher7c923422010-12-02 02:13:27 +00004// CHECK-DEFAULT: @x = common global
5// CHECK-NOCOMMON: @x = global
Daniel Dunbar069afd52009-03-26 16:37:00 +00006int x;