Files
clang-p2996/clang/test/CodeGen/attr-weak-import.c
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

26 lines
554 B
C

// RUN: %clang_cc1 -triple x86_64-darwin-apple -emit-llvm -o - %s | FileCheck %s
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