Werror-5.c 418 Bytes
Newer Older
DJ Delorie committed
1
/* { dg-do compile } */
2
/* { dg-options "-Waddress -Wattributes -Werror" } */
3
/* { dg-message "warnings being treated as errors" "" {target "*-*-*"} 0 } */
DJ Delorie committed
4 5 6

/* Make sure -Werror turns warnings in to errors.  */

7
void grill ();
8
void __attribute__((dj)) bar() { }	/* { dg-error ".* attribute directive ignored" } */
DJ Delorie committed
9 10 11 12 13 14

int i;

void
foo ()
{
15
  if (&i)	/* { dg-error ".* will always evaluate as 'true'" } */
DJ Delorie committed
16 17
    grill ();
}