teak-llvm/clang/test/CodeGen/no-common.c
Jim Grosbach 2987c57924 Tests: check for target availability for target-specific tests.
Lots of tests are using an explicit target triple w/o first checking that the
target is actually available. Add a REQUIRES clause to a bunch of them. This should
hopefully unbreak bots which don't configure w/ all targets enabled.

llvm-svn: 159949
2012-07-09 18:34:21 +00:00

16 lines
516 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;
// 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
int y __attribute__((common));