2011-02-20 13:06:31 +00: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-06-02 17:58:47 +00:00
|
|
|
|
2011-02-20 13:06:31 +00:00
|
|
|
// CHECK-DEFAULT: @x = common global
|
|
|
|
// CHECK-NOCOMMON: @x = global
|
2009-06-02 17:58:47 +00:00
|
|
|
int x;
|
2011-02-20 13:06:31 +00: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-08-15 20:02:54 +00:00
|
|
|
int y __attribute__((common));
|