Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / pr7263-3.c
blob225b659754c2f7a5581ce1f8893182f209bd87f5
1 /* PR 7263: __extension__ keyword doesn't suppress warning on LL or ULL constants. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c99 -pedantic-errors -ftrack-macro-expansion=0" } */
4 #include "pr7263-3.h"
5 __complex__ bar () /* { dg-error "ISO C does not support plain .complex. meaning .double complex." } */
7 return _Complex_I_ext;
10 __extension__ __complex__
11 bar2 ()
13 return _Complex_I;
16 __complex__ bar3 () /* { dg-error "ISO C does not support plain .complex. meaning .double complex." } */
18 return _Complex_I; /* { dg-error "imaginary constants are a GCC extension" } */