forked from OSchip/llvm-project
parent
8517abc30d
commit
1f9e9ac766
|
@ -0,0 +1,9 @@
|
|||
// RUN: %llvmgcc -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
|
||||
typedef float float4 __attribute__((vector_size(16)));
|
||||
|
||||
int main(){
|
||||
volatile float4 x = (float4) { 0.0f, 1.0f, 2.0f, 3.0f };
|
||||
x += x;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue