mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 17:06:07 +00:00

We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
52 lines
1.9 KiB
C
52 lines
1.9 KiB
C
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
|
|
|
//typedef __attribute__(( ext_vector_type(4) )) float float4;
|
|
typedef float float4 __attribute__((vector_size(16)));
|
|
|
|
float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };
|
|
|
|
float4 foo2 = (float4){ 1.0, 2.0, 3.0, 4.0 , 5.0 }; // expected-warning{{excess elements in vector initializer}}
|
|
|
|
float4 array[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0};
|
|
int array_sizecheck[(sizeof(array) / sizeof(float4)) == 3 ? 1 : -1];
|
|
|
|
float4 array2[2] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0,
|
|
9.0 }; // expected-warning {{excess elements in array initializer}}
|
|
|
|
float4 array3[2] = { {1.0, 2.0, 3.0}, 5.0, 6.0, 7.0, 8.0,
|
|
9.0 }; // expected-warning {{excess elements in array initializer}}
|
|
|
|
// PR5650
|
|
__attribute__((vector_size(16))) float f1(void) {
|
|
__attribute__((vector_size(16))) float vec = {0.0f, 0.0f, 0.0f};
|
|
return(vec);
|
|
}
|
|
|
|
__attribute__((vector_size(16))) float f2(
|
|
__attribute__((vector_size(16))) float a1) {
|
|
return(a1);
|
|
}
|
|
|
|
|
|
|
|
// PR5265
|
|
typedef float __attribute__((ext_vector_type (3))) float3;
|
|
int test2[sizeof(float3) == sizeof(float4) ? 1 : -1];
|
|
|
|
typedef long long __attribute__((vector_size(16))) longlong2;
|
|
typedef short __attribute__((vector_size(16))) short8;
|
|
typedef short __attribute__((vector_size(8))) short4;
|
|
void test3(void) {
|
|
extern short8 test3_helper(void);
|
|
longlong2 arr1[2] = { test3_helper(), test3_helper() };
|
|
short4 arr2[2] = { test3_helper(), test3_helper() }; // expected-error 2 {{initializing 'short4' (vector of 4 'short' values) with an expression of incompatible type 'short8' (vector of 8 'short' values)}}
|
|
}
|
|
|
|
// GH50216
|
|
// These would previously crash when constant evaluating the initializers.
|
|
typedef double float64x1_t __attribute__((vector_size(8)));
|
|
float64x1_t arg1 = (float64x1_t)0x3fedf9d4343c7c80; // okay
|
|
|
|
typedef float float32x1_t __attribute__((vector_size(4)));
|
|
float32x1_t arg2 = (float32x1_t)0x3fedf9d4; // okay
|