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
/
c23-attr-unsequenced-5-aux.c
blob
c3e49a7cd7a8488ff59d5bbdb0d1de3bb3ee0bf3
1
/* Auxiliary source for c23-attr-unsequenced-5.c test. */
2
/* { dg-do compile } */
3
/* { dg-options "-std=c23 -pedantic-errors" } */
4
5
int
6
f1
() [[
unsequenced
]]
7
{
8
return
42
;
9
}
10
11
int
12
f2
()
13
{
14
return
43
;
15
}
16
17
int
18
f3
()
19
{
20
return
44
;
21
}