repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr87286.c
blob
155ace8021c95fa266792c465b4ff696fa170c1e
1
/* { dg-options "-Wno-psabi" } */
2
enum
foo
{
F
};
3
typedef
enum
foo vec_foo
__attribute__
((
vector_size
(
16
)));
4
vec_foo
add
(
vec_foo x
,
vec_foo y
) {
return
x
+
y
; }