blob: cee701b135c18dc795f106fcf421c06d06c6c281 (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile } */
extern void inject_ice (void);
void test_1 (void)
{
inject_ice (); /* { dg-ice "I'm sorry Dave, I'm afraid I can't do that" } */
/* { dg-regexp "during GIMPLE pass: crash_test" } */
}
|