]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Index/vector-types.c
Vendor import of clang trunk r161861:
[FreeBSD/FreeBSD.git] / test / Index / vector-types.c
1 int __attribute__((vector_size(16))) x;
2 typedef int __attribute__((vector_size(16))) int4_t;
3
4 // RUN: c-index-test -test-print-typekind %s | FileCheck %s
5 // CHECK: VarDecl=x:1:38 typekind=Vector [isPOD=1]
6 // CHECK: TypedefDecl=int4_t:2:46 (Definition) typekind=Typedef [canonical=Vector] [isPOD=1]