mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
4551671908
This is a small targeted fix for pr20119. The code needs quiet a bit of refactoring and I added some FIXMEs about it, but I want to get the testcase passing first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212101 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
363 B
ArmAsm
20 lines
363 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: ]
|
|
|
|
.section .test1_foo
|
|
.Ltest1_1:
|
|
.Ltest1_2 = .Ltest1_1
|
|
.section .test1_bar
|
|
.long .Ltest1_1-.Ltest1_2
|
|
|
|
|
|
.section test2
|
|
|
|
.Ltest2_a:
|
|
.Ltest2_b = .Ltest2_a
|
|
.Ltest2_c:
|
|
.Ltest2_d = .Ltest2_c-.Ltest2_b
|
|
.long .Ltest2_d
|