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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
verbose-asm.c
blob
7d105d31cda9c3887dec46216fe5b87c7f690a2e
1
/* Test whether -fverbose-asm works. */
2
/* { dg-do compile } */
3
/* { dg-options "-fverbose-asm" } */
4
5
void
foo
(
int
*
x
)
6
{
7
(*
x
)++;
8
}
9
10
int
bar
(
int
*
y
)
11
{
12
int
a
,
b
;
13
b
=
10
;
14
a
=
26
;
15
foo
(&
a
);
16
a
+=
10
;
17
foo
(&
a
);
18
*
y
--;
19
return
b
;
20
}
21
22
int
23
main
(
int
argc
,
char
*
argv
[])
24
{
25
bar
(&
argc
);
26
return
0
;
27
}