2018-05-04 23:09:49 +08:00
|
|
|
# REQUIRES: ppc
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=powerpc64le-unknown-linux %s -o %t
|
|
|
|
# RUN: ld.lld %t -o %t2
|
|
|
|
# RUN: llvm-objdump -d %t2 | FileCheck %s
|
|
|
|
|
2015-10-16 00:12:35 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=powerpc64-unknown-linux %s -o %t
|
2015-11-18 14:11:01 +08:00
|
|
|
# RUN: ld.lld %t -o %t2
|
2015-10-16 00:12:35 +08:00
|
|
|
# RUN: llvm-objdump -d %t2 | FileCheck %s
|
|
|
|
|
|
|
|
# CHECK: Disassembly of section .text:
|
|
|
|
|
2018-05-04 23:09:49 +08:00
|
|
|
.text
|
2015-10-16 00:12:35 +08:00
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
bl weakfunc
|
|
|
|
nop
|
|
|
|
blr
|
|
|
|
|
|
|
|
.weak weakfunc
|
|
|
|
|
|
|
|
# It does not really matter how we fixup the bl, if at all, because it needs to
|
2015-10-17 08:48:20 +08:00
|
|
|
# be unreachable. But, we should link successfully. We should not, however,
|
|
|
|
# generate a .plt entry (this would be wasted space). For now, we do nothing
|
|
|
|
# (leaving the zero relative offset present in the input).
|
2018-05-04 23:09:49 +08:00
|
|
|
# CHECK: 10010000: {{.*}} bl .+0
|
|
|
|
# CHECK: 10010004: {{.*}} nop
|
|
|
|
# CHECK: 10010008: {{.*}} blr
|