You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
// RUN: %clang_cc1 -triple arm64 %s -verify -emit-llvm -o - -Wno-c99-designator | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
// Make sure we don't enter an infinite loop (rdar://21942503)
|
|
|
|
int vals1[] = {
|
|
[__objc_yes] = 1,
|
|
[__objc_no] = 2
|
|
};
|
|
// CHECK: @vals1 = global [2 x i32] [i32 2, i32 1]
|
|
|
|
int vals2[] = {
|
|
[true] = 3,
|
|
[false] = 4
|
|
};
|
|
// CHECK: @vals2 = global [2 x i32] [i32 4, i32 3]
|
|
|
|
int vals3[] = {
|
|
[false] = 1,
|
|
[true] = 2,
|
|
5
|
|
};
|
|
// CHECK: @vals3 = global [3 x i32] [i32 1, i32 2, i32 5]
|
|
|
|
int vals4[2] = {
|
|
[true] = 5,
|
|
[false] = 6
|
|
};
|
|
// CHECK: @vals4 = global [2 x i32] [i32 6, i32 5]
|
|
|
|
int vals5[3] = {
|
|
[false] = 1,
|
|
[true] = 2,
|
|
6
|
|
};
|
|
// CHECK: @vals5 = global [3 x i32] [i32 1, i32 2, i32 6]
|
|
|
|
enum SomeEnum : unsigned char {
|
|
blah = 255
|
|
};
|
|
char vals6[] = {
|
|
[blah] = 'a'
|
|
};
|
|
// CHECK: @vals6 = global [256 x i8] c"\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00a"
|