llvm-6502/test/FrontendC/2010-02-18-Dbg-VectorType.c
Devang Patel 7b9d6d2e55 Test case for r96656.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96657 91177308-0d34-0410-b5e6-96231b3b80d8
2010-02-19 02:58:33 +00:00

10 lines
223 B
C

// 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;
}