~terry.guo/+junk/xbinutils

« back to all changes in this revision

Viewing changes to src/binutils/ld/testsuite/ld-elf/note-2.t

  • Committer: Terry Guo
  • Date: 2012-09-05 06:50:40 UTC
  • Revision ID: terry.guo@arm.com-20120905065040-430c6mhm9b11a6r6
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ENTRY(_entry)
 
2
PHDRS
 
3
{
 
4
  data PT_LOAD;
 
5
  note PT_NOTE;
 
6
}
 
7
SECTIONS
 
8
{
 
9
  .text : { *(.text) } :data
 
10
  .foo : { *(.foo) } :data
 
11
  .note : { *(.note) } :note
 
12
  /DISCARD/ : { *(*) }
 
13
}