Home | History | Annotate | Download | only in ELF
      1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s
      2 
      3 // CHECK: Relocations [
      4 // CHECK-NEXT: ]
      5 
      6 	.section	.test1_foo
      7 .Ltest1_1:
      8 .Ltest1_2 = .Ltest1_1
      9 	.section	.test1_bar
     10 	.long .Ltest1_1-.Ltest1_2
     11 
     12 
     13         .section test2
     14 
     15 .Ltest2_a:
     16 .Ltest2_b = .Ltest2_a
     17 .Ltest2_c:
     18 .Ltest2_d = .Ltest2_c-.Ltest2_b
     19 	.long	.Ltest2_d
     20