19 void never_throws() throw () {
20 printf("this statement is cold and should be outlined\n");
23 int main(int argc
, char **argv
)
25 for (unsigned i
= 0; i
< 1000; ++i
) {
28 never_throws(); // should be cold
32 never_throws(); // should be cold
47 printf("caught ExcC\n");
50 printf("caught ExcG\n");