blob: 0c0bfe6a6794b1ea5ca21c3e3d27da613609bd4c [file] [log] [blame]
// Verify that if explicit prototype for builtin is present with throw(),
// neither the normal builtin nor __builtin_* variant can throw exceptions.
// { dg-do compile }
// { dg-options "-fdump-tree-eh" }
extern "C" int printf (const char *, ...) throw();
extern void callme (void) throw();
void
foo (int i)
{
try {
printf ("foo %d\n", i);
} catch (...) {
callme();
}
}
void
bar (int i)
{
try {
__builtin_printf ("foo %d\n", i);
} catch (...) {
callme();
}
}
/* { dg-final { scan-tree-dump-times "resx" 0 "eh" } } */