Currently, ppc64le and ppc64 (defaulting to big endian) have the same
descriptor, thus the linear scan always return ppc64le. Handle that through
subtype.
This is a recommit of f114f00948 with a new test
setup that doesn't involves (unsupported) corefiles.
Differential Revision: https://reviews.llvm.org/D124760
13 lines
355 B
Plaintext
13 lines
355 B
Plaintext
# REQUIRES: powerpc
|
|
#
|
|
# RUN: llvm-mc -triple=powerpc64le -filetype=obj %p/Inputs/ppc64le-localentry.s -o %t
|
|
# RUN: lldb-test breakpoints %t %s | FileCheck %s
|
|
|
|
breakpoint set -n lfunc
|
|
# CHECK-LABEL: breakpoint set -n lfunc
|
|
# CHECK: Address: {{.*}}`lfunc + 8
|
|
|
|
breakpoint set -n simple
|
|
# CHECK-LABEL: breakpoint set -n simple
|
|
# CHECK: Address: {{.*}}`simple
|