After a first attempt to fix the test-suite failures, my first recommit
caused the same failures again. I had updated CMakeList.txt files of
tests that needed -fcommon, but it turns out that there are also
Makefiles which are used by some bots, so I've updated these Makefiles
now too.
See the original commit message for more details on this change:
0a9fc9233e
27 lines
572 B
C
27 lines
572 B
C
// RUN: %clang_cc1 -triple x86_64-darwin-apple -emit-llvm -o - %s | FileCheck %s
|
|
// rdar://9538608
|
|
|
|
extern int A __attribute__((weak_import));
|
|
int A;
|
|
|
|
extern int B __attribute__((weak_import));
|
|
extern int B;
|
|
|
|
int C;
|
|
extern int C __attribute__((weak_import));
|
|
|
|
extern int D __attribute__((weak_import));
|
|
extern int D __attribute__((weak_import));
|
|
int D;
|
|
|
|
extern int E __attribute__((weak_import));
|
|
int E;
|
|
extern int E __attribute__((weak_import));
|
|
|
|
// CHECK: @A = global i32
|
|
// CHECK-NOT: @B =
|
|
// CHECK: @C = global i32
|
|
// CHECK: @D = global i32
|
|
// CHECK: @E = global i32
|
|
|