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 
7 void grill ();
bar()8 void __attribute__((dj)) bar() { }	/* { dg-warning ".* attribute directive ignored" } */
9 
10 int i;
11 
12 void
foo()13 foo ()
14 {
15   if (&i)
16     grill ();
17 }
18