URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [debug/] [dwarf2/] [dwarf-float.c] - Rev 689
Compare with Previous | Blame | View Log
/* Verify the DWARF encoding of C99 floating point types. */ /* { dg-do compile */ /* { dg-options "-O0 -gdwarf-2 -dA" } */ /* { dg-final { scan-assembler "0x4.*DW_AT_encoding" } } */ /* { dg-final { scan-assembler "0x4.*DW_AT_byte_size" } } */ /* { dg-final { scan-assembler "0x8.*DW_AT_byte_size" } } */ /* { dg-final { scan-assembler "0x10.*DW_AT_byte_size" } } */ void foo () { float f = 1.5f; double d = 1.5; long double l = 1.5l; }