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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
attr-hotcold-1.c
blob
f63a95c71c53160f1c99ad9578882d1869227294
1
void
f
(
void
)
2
{
3
goto
A
;
4
A
:
__attribute__
((
cold
))
5
goto
B
;
6
B
:
__attribute__
((
hot
))
7
return
;
8
}