URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [specs/] [linker_section.ads] - Rev 304
Compare with Previous | Blame | View Log
package Linker_Section is Data1 : constant String := "12345678901234567"; pragma Linker_Section (Entity => Data1, Section => ".eeprom"); type EEPROM_String is new String; pragma Linker_Section (Entity => EEPROM_String, -- { dg-error "objects" } Section => ".eeprom"); Data2 : constant EEPROM_String := "12345678901234567"; package Inner is end; pragma Linker_Section (Entity => Inner, -- { dg-error "objects" } Section => ".eeprom"); end Linker_Section;