Produce an error instead of a crash in an expr we cannot represent.
[oota-llvm.git] / test / MC / AArch64 / adrp-relocation.s
1 // RUN: llvm-mc -triple=aarch64-linux-gnu -filetype=obj -o - %s| llvm-readobj -r - | FileCheck %s
2 // RUN: llvm-mc -triple=arm64-linux-gnu -filetype=obj -o - %s| llvm-readobj -r - | FileCheck %s
3         .text
4 // These should produce an ADRP/ADD pair to calculate the address of
5 // testfn. The important point is that LLVM shouldn't think it can deal with the
6 // relocation on the ADRP itself (even though it knows everything about the
7 // relative offsets of testfn and foo) because its value depends on where this
8 // object file's .text section gets relocated in memory.
9         adrp x0, sym
10         adrp x0, :got:sym
11         adrp x0, :gottprel:sym
12         adrp x0, :tlsdesc:sym
13
14         .global sym
15 sym:
16 // CHECK: R_AARCH64_ADR_PREL_PG_HI21 sym
17 // CHECK: R_AARCH64_ADR_GOT_PAGE sym
18 // CHECK: R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 sym
19 // CHECK: R_AARCH64_TLSDESC_ADR_PAGE sym