view gcc/testsuite/g++.dg/opt/pr65074.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR middle-end/65074
// { dg-do link { target pie } }
// { dg-options "-pie -fpie -O2" }

#include <fstream>

using namespace std;

__attribute__((noinline, noclone)) void
foo (const char *fname)
{
  ifstream f (fname);
}

int
main ()
{
  foo ("foobar");
}