forked from OSchip/llvm-project
[AArch64] Update a comment in a test
The comment ended up outdated when the test was rewritten in SVN r192281. Differential Revision: https://reviews.llvm.org/D35543 llvm-svn: 309016
This commit is contained in:
parent
84cda2d779
commit
1913360a16
|
@ -2,11 +2,10 @@
|
||||||
// RUN: llvm-mc -target-abi=ilp32 -triple=aarch64-linux-gnu -filetype=obj \
|
// RUN: llvm-mc -target-abi=ilp32 -triple=aarch64-linux-gnu -filetype=obj \
|
||||||
// RUN: -o - %s| llvm-readobj -r - | FileCheck -check-prefix=CHECK-ILP32 %s
|
// RUN: -o - %s| llvm-readobj -r - | FileCheck -check-prefix=CHECK-ILP32 %s
|
||||||
.text
|
.text
|
||||||
// These should produce an ADRP/ADD pair to calculate the address of
|
// This tests that LLVM doesn't think it can deal with the relocation on the ADRP
|
||||||
// testfn. The important point is that LLVM shouldn't think it can deal with the
|
// itself (even though it knows everything about the relative offsets of sym and
|
||||||
// relocation on the ADRP itself (even though it knows everything about the
|
// the adrp instruction) because its value depends on where this object file's
|
||||||
// relative offsets of testfn and foo) because its value depends on where this
|
// .text section gets relocated in memory.
|
||||||
// object file's .text section gets relocated in memory.
|
|
||||||
adrp x0, sym
|
adrp x0, sym
|
||||||
adrp x0, :got:sym
|
adrp x0, :got:sym
|
||||||
adrp x0, :gottprel:sym
|
adrp x0, :gottprel:sym
|
||||||
|
|
Loading…
Reference in New Issue