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 f114f009486816ed4b3bf984f0fbbb8fc80914f6 with a new test setup that doesn't involves (unsupported) corefiles. Differential Revision: https://reviews.llvm.org/D124760
13 lines
351 B
Plaintext
13 lines
351 B
Plaintext
# REQUIRES: powerpc
|
|
#
|
|
# RUN: llvm-mc -triple=powerpc64 -filetype=obj %p/Inputs/ppc64-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
|