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
8 lines
241 B
Objective-C
8 lines
241 B
Objective-C
// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
|
|
|
|
struct overwrite_string_struct {
|
|
char L[3];
|
|
int M;
|
|
} overwrite_string[] = { { { @encode(void**) }, 1 }, [0].L[1] = 'x'};
|
|
// CHECK: [3 x i8] c"^xv", i32 1
|