mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
c95b1c8cf0
Fix PR44284. This is probably not valid assembly but we should not crash. Reviewed By: luporl, #powerpc, steven.zhang Differential Revision: https://reviews.llvm.org/D71443
40 lines
863 B
ArmAsm
40 lines
863 B
ArmAsm
# RUN: llvm-mc -filetype=obj -triple=powerpc64-unknown-freebsd13.0 %s -o %t
|
|
# RUN: llvm-objdump -t %t | FileCheck %s
|
|
|
|
# CHECK: 0000000000000000 gw F .text 00000000 0x60 __impl_foo
|
|
# CHECK: 0000000000000000 g F .text 00000000 0x60 foo
|
|
# CHECK: 0000000000000000 gw F .text 00000000 0x60 foo@FBSD_1.1
|
|
# CHECK: 0000000000000008 g F .text 00000000 0x60 func
|
|
# CHECK: 0000000000000008 gw F .text 00000000 0x60 weak_func
|
|
|
|
.text
|
|
.abiversion 2
|
|
|
|
.globl foo
|
|
.type foo,@function
|
|
foo:
|
|
nop
|
|
nop
|
|
.localentry foo, 8
|
|
|
|
.symver __impl_foo, foo@FBSD_1.1
|
|
.weak __impl_foo
|
|
.set __impl_foo, foo
|
|
|
|
.globl func
|
|
# Mimick FreeBSD weak function/reference
|
|
.weak weak_func
|
|
.equ weak_func, func
|
|
|
|
.p2align 2
|
|
.type func,@function
|
|
func:
|
|
nop
|
|
nop
|
|
.localentry func, 8
|
|
|
|
## PR44284 Don't crash if err is redefined after .set
|
|
.set err, _err
|
|
.globl err
|
|
err:
|