2015-11-13 11:26:59 +08:00
|
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64-pc-freebsd %S/Inputs/abs.s -o %tabs
|
|
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64-pc-freebsd %s -o %t
|
2015-11-18 14:11:01 +08:00
|
|
|
// RUN: not ld.lld %t %tabs -o %t2 2>&1 | FileCheck %s
|
2015-11-13 11:26:59 +08:00
|
|
|
// REQUIRES: aarch64
|
|
|
|
|
|
|
|
.text
|
2015-11-18 02:01:30 +08:00
|
|
|
.globl _start
|
|
|
|
_start:
|
2015-11-13 11:26:59 +08:00
|
|
|
bl big
|
|
|
|
|
|
|
|
// CHECK: R_AARCH64_CALL26 out of range
|