We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9c63e commit 1ba5ea3Copy full SHA for 1ba5ea3
regression/goto-gcc/gcc_attributes10/main.c
@@ -4,13 +4,13 @@
4
#ifdef __GNUC__
5
#ifndef __clang__
6
7
-int x __attribute__ ((__vector_size__ (12), __may_alias__));
+int x __attribute__ ((__vector_size__ (16), __may_alias__));
8
int x2 __attribute__ ((__may_alias__));
9
-int x3 __attribute__ ((__may_alias__, __vector_size__ (12)));
+int x3 __attribute__ ((__may_alias__, __vector_size__ (16)));
10
11
-STATIC_ASSERT(sizeof(x)==12);
+STATIC_ASSERT(sizeof(x)==16);
12
STATIC_ASSERT(sizeof(x2)==sizeof(int));
13
-STATIC_ASSERT(sizeof(x3)==12);
+STATIC_ASSERT(sizeof(x3)==16);
14
15
#endif
16
0 commit comments