URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [fltconst-double-pedantic-2.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-std=c99 -pedantic-errors" } */ double a = 1.d; /* { dg-error "double constant" } */ double b = 1.D; /* { dg-error "double constant" } */ double c = 1.1e+2d; /* { dg-error "double constant" } */ double d = 1.di; /* { dg-error "imaginary constants" } */ double e = 1.dj; /* { dg-error "imaginary constants" } */ double f = 1.id; /* { dg-error "imaginary constants" } */ double g = 1.jd; /* { dg-error "imaginary constants" } */ double h = 0x1.5p1d; /* { dg-error "double constant" } */
Go to most recent revision | Compare with Previous | Blame | View Log