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
/
vect
/
pr115753-3.c
blob
8e95445897cc26aa52be9b404eaf68a625863cf4
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -frounding-math" } */
3
4
void
f
(
float
*);
5
void
6
foo1
()
7
{
8
long long
t0
=
__LONG_LONG_MAX__
;
9
long long
t1
=
__LONG_LONG_MAX__
-
1
;
10
float
tt
[
2
];
11
tt
[
0
] =
t0
;
12
tt
[
1
] =
t1
;
13
f
(&
tt
[
0
]);
14
}
15