2010-12-02 10:13:27 +08:00
|
|
|
// 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
|
2009-03-27 00:37:00 +08:00
|
|
|
|
2010-12-02 10:13:27 +08:00
|
|
|
// CHECK-DEFAULT: @x = common global
|
|
|
|
// CHECK-NOCOMMON: @x = global
|
2009-03-27 00:37:00 +08:00
|
|
|
int x;
|
2010-12-02 10:45:55 +08:00
|
|
|
|
|
|
|
// CHECK-DEFAULT: @ABC = global
|
|
|
|
// CHECK-NOCOMMON: @ABC = global
|
|
|
|
typedef void* (*fn_t)(long a, long b, char *f, int c);
|
|
|
|
fn_t ABC __attribute__ ((nocommon));
|
|
|
|
|
|
|
|
// CHECK-DEFAULT: @y = common global
|
|
|
|
// CHECK-NOCOMMON: @y = common global
|
2012-07-10 02:34:21 +08:00
|
|
|
int y __attribute__((common));
|