1 /* { dg-do compile } */
2 /* { dg-options "" } */
3 
4 /* This one is the baseline.  Make sure with no option we get no
5    warnings.  */
6 
bar()7 void __attribute__((dj)) bar() { }	/* { dg-warning ".* attribute directive ignored" } */
8 
9 int i;
10 
11 void
foo()12 foo ()
13 {
14   if (&i)
15     grill ();
16 }
17