summaryrefslogtreecommitdiff
path: root/test/MC/ELF/x86_64-reloc-sizetest.s
blob: bd67ee0f9de81104c366aa9b6bcd29129b2bbf49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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: ]