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
/
pr32383.C
blob
af4161888ece17ca322f116bd2790ca2a2a57298
1
// Testcase by Volker Reichelt <reichelt@gcc.gnu.org>
2
3
// { dg-do compile }
4
// { dg-options "-O -ffast-math" }
5
6
struct A
7
{
8
~A();
9
};
10
11
double& foo();
12
13
inline void bar (double d) { foo() /= d; }
14
15
void baz()
16
{
17
A a;
18
bar(2);
19
}
20