Commit 92657eb0 by Richard Biener Committed by David Edelsohn

re PR ipa/78188 (AIX Bootstrap broken by tree-vrp.c change)

2016-11-05  Richard Biener  <rguenther@suse.de>

        PR bootstrap/78188
        * g++.dg/ipa/pr78188.C: New test.

From-SVN: r241871
parent 28ce22e6
2016-11-05 Richard Biener <rguenther@suse.de>
PR bootstrap/78188
* g++.dg/ipa/pr78188.C: New test.
2016-11-05 Janus Weil <janus@gcc.gnu.org>
Dominique d'Humieres <dominiq@lps.ens.fr>
......
// { dg-do compile }
// { dg-options "-O2 -fno-exceptions" }
int a;
static void __attribute__((noinline)) foo () { a = 1; }
static void __attribute__((noinline)) foo2 () { a = 2; }
struct X
{
virtual void bar (int i) { if (!i) { foo (); __builtin_abort (); } }
};
void baz (int i)
{
if (!i)
{ foo2 (); __builtin_abort (); }
}
X xx;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment