Home | History | Annotate | Line # | Download | only in microcode
      1 OUTPUT_ARCH(arm)
      2 SECTIONS
      3 {
      4 	.text :
      5 	{
      6 		*(.text)
      7 		*(.text.*)
      8 		*(.glue_7t) *(.glue_7)
      9 	}
     10 	. = ALIGN(16);
     11 	.data :
     12 	{
     13 	}
     14 	. = ALIGN(16);
     15 	.sbss :
     16 	{
     17 	}
     18 	. = ALIGN(16);
     19 	.bss :
     20 	{
     21 	}
     22 }
     23 
     24