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
[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
ifcvt1.C
blob
8fcbf4619078b1a8d685047d2393bbf844238c4d
1
// { dg-do compile }
2
// { dg-options "-O2 -fnon-call-exceptions" }
3
4
struct S { ~S () throw () {} };
5
double bar ();
6
7
int
8
foo ()
9
{
10
S a;
11
int i = 0;
12
double c = bar ();
13
c = c < 0 ? -c : c;
14
if (c <= 1.e-8)
15
i += 24;
16
return i;
17
}