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
/
pr113062.c
blob
5667c17b0f6928ec865c236491bf0c8bc974b9bc
1
/* { dg-do compile } */
2
/* { dg-options "-Oz -fharden-conditional-branches" } */
3
long double
foo
;
4
double
bar
;
5
void
abort
();
6
void
check
() {
7
if
(
foo
==
bar
)
8
abort
();
9
}
10