mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
f89da7210b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179361 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
410 B
ArmAsm
14 lines
410 B
ArmAsm
// RUN: llvm-mc -triple x86_64-linux-gnu -filetype=obj %s | llvm-readobj -r | FileCheck %s
|
|
|
|
// Tests that relocation value fits in the provided size
|
|
// Original bug http://llvm.org/bugs/show_bug.cgi?id=10568
|
|
|
|
L: movq $(L + 2147483648),%rax
|
|
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: Section ({{[0-9]+}}) .text {
|
|
// CHECK-NEXT: 0x3 R_X86_64_32S {{[^ ]+}} 0x80000000
|
|
// CHECK-NEXT: }
|
|
// CHECK-NEXT: ]
|