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
/
pr65074.C
blob
01c5926e6626c375ec5c74146e846b4516d0304b
1
// PR middle-end/65074
2
// { dg-do link { target pie } }
3
// { dg-options "-pie -fpie -O2" }
4
5
#include <fstream>
6
7
using namespace std;
8
9
__attribute__((noinline, noclone)) void
10
foo (const char *fname)
11
{
12
ifstream f (fname);
13
}
14
15
int
16
main ()
17
{
18
foo ("foobar");
19
}