URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [builtin-complex-err-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test __builtin_complex errors. Verify it does nto allow quiet creation of complex types in C90. */ /* { dg-do compile } */ /* { dg-options "-std=c90 -pedantic-errors" } */ void f (void) { __builtin_complex (0.0, 0.0); /* { dg-error "ISO C90 does not support complex types" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log