Mercurial > hg > CbC > CbC_llvm
annotate lld/test/ELF/x86-64-reloc-tpoff32-error.s @ 192:d7606dcf6fce
Added tag llvm10 for changeset 0572611fdcc8
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 14 Dec 2020 18:01:34 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // REQUIRES: x86 |
2 // RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t | |
3 // RUN: not ld.lld %t -o /dev/null 2>&1 | FileCheck %s | |
4 // CHECK: R_X86_64_TPOFF32 out of range | |
5 | |
6 .global _start | |
7 _start: | |
8 movl %fs:a@tpoff, %eax | |
9 .global a | |
10 .section .tbss,"awT",@nobits | |
11 a: | |
12 .zero 0x80000001 |