testsuite: Fix up pr111150* tests on i686-linux [PR111150]
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / pr85029.C
blob836ce69cc15d4fac22265d4064e777ab04199ba3
1 // PR sanitizer/85029
2 // { dg-do compile }
3 // { dg-skip-if "" { *-*-* } { "-flto -fno-fat-lto-objects" } }
4 // { dg-options "-fsanitize=undefined -Wno-register" }
6 struct B {
7   virtual B bar ();
8   int e;
9 } register a;   // { dg-error "register name not specified for 'a'" }
11 int
12 foo (...)
14   return foo (a);