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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
guality
/
pr41447-1.c
blob
308ef94967d36066756c5e3474c68e8f82b7a7f9
1
/* { dg-do run } */
2
/* { dg-options "-g" } */
3
4
#include
"guality.h"
5
6
int
a
;
7
8
int
9
main
(
int
argc
,
char
*
argv
[])
10
{
11
int
tmp
=
a
;
12
int
tmp2
=
a
;
13
int
tmp3
;
14
int
res
;
15
GUALCHKVAL
(
a
);
16
GUALCHKVAL
(
tmp
);
17
GUALCHKVAL
(
tmp2
);
18
a
=
0
;
19
tmp3
=
tmp2
;
20
GUALCHKVAL
(
a
);
21
GUALCHKVAL
(
tmp
);
22
GUALCHKVAL
(
tmp2
);
23
GUALCHKVAL
(
tmp3
);
24
res
=
tmp
-
tmp2
+
1
;
25
return
res
;
26
}