mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

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
16 lines
516 B
C
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));
|