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.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960802-1.c
blob
f9ee75260be377d95833795c4b34e853d0084ff7
1
long
val
=
0x5e000000
;
2
3
long
4
f1
(
void
)
5
{
6
return
0x132
;
7
}
8
9
long
10
f2
(
void
)
11
{
12
return
0x5e000000
;
13
}
14
15
void
16
f3
(
long
b
)
17
{
18
val
=
b
;
19
}
20
21
void
22
f4
()
23
{
24
long
v
=
f1
();
25
long
o
=
f2
();
26
v
= (
v
&
0x00ffffff
) | (
o
&
0xff000000
);
27
f3
(
v
);
28
}
29
30
main
()
31
{
32
f4
();
33
if
(
val
!=
0x5e000132
)
34
abort
();
35
exit
(
0
);
36
}