blob: 1e10531c204827f53c6304f2c262ff1cd24bcd96 [file] [log] [blame]
Rafael Espindolaad49cf52010-09-18 15:03:21 +00001// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s
2
3// Test that the STT_FILE symbol precedes the other local symbols.
4
5.file "foo"
6foa:
Eric Christopher1dcb1ea2010-10-19 00:19:49 +00007// CHECK: # Symbol 1
8// CHECK-NEXT: (('st_name', 1) # 'foo'
9// CHECK-NEXT: ('st_bind', 0)
10// CHECK-NEXT: ('st_type', 4)
11// CHECK-NEXT: ('st_other', 0)
12// CHECK-NEXT: ('st_shndx', 65521)
13// CHECK-NEXT: ('st_value', 0)
14// CHECK-NEXT: ('st_size', 0)
Rafael Espindolaad49cf52010-09-18 15:03:21 +000015// CHECK-NEXT: ),
Eric Christopher1dcb1ea2010-10-19 00:19:49 +000016// CHECK-NEXT: # Symbol 2
17// CHECK-NEXT: (('st_name', 5) # 'foa'
18// CHECK-NEXT: ('st_bind', 0)
19// CHECK-NEXT: ('st_type', 0)
20// CHECK-NEXT: ('st_other', 0)
21// CHECK-NEXT: ('st_shndx', 1)
22// CHECK-NEXT: ('st_value', 0)
23// CHECK-NEXT: ('st_size', 0)