blob: 87051146a5b48fa0e1e582976b3936a547496dd8 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wattributes" } */
/* Make sure #pragma can enable a warning as an error. */
#pragma GCC diagnostic error "-Waddress"
void __attribute__((dj)) bar() { } /* { dg-warning ".* attribute directive ignored" } */
int i;
void
foo ()
{
if (&i) /* { dg-error ".* will always evaluate as 'true'" } */
grill ();
}