[gcn] mkoffload.cc: Print fatal error if -march has no multilib but generic has
[gcc.git] / gcc / testsuite / g++.dg / debug / dwarf2 / pr85302.C
blob457508dd586745e4d71ac2304ae513465c66783f
1 // PR debug/85302
2 // { dg-do compile }
3 // { dg-skip-if "split DWARF unsupported" { *-*-darwin* } }
4 // { dg-options "-std=c++11 -gsplit-dwarf -O1" }
5 // { dg-additional-options "-fPIE" { target pie } }
7 struct A { const char *b; A (const char *c) : b(c) {} };
8 struct B { void foo (A); };
9 B e;
11 void
12 bar ()
14   e.foo ("");