19 lines
477 B
Plaintext
19 lines
477 B
Plaintext
# UNSUPPORTED: system-darwin, system-windows
|
|
# REQUIRES: gcc
|
|
|
|
# Make sure the artifical field `vptr.ClassName` from gcc debug info is ignored.
|
|
# RUN: %build --compiler=gcc %S/Inputs/debug-types-expressions.cpp -o %t
|
|
# RUN: %lldb %t -s %s -o exit | FileCheck %s
|
|
|
|
breakpoint set -n foo
|
|
process launch
|
|
|
|
# CHECK: Process {{.*}} stopped
|
|
|
|
frame variable *a
|
|
# CHECK-LABEL: frame variable *a
|
|
# CHECK: (B) *a = {
|
|
# CHECK-NEXT: A = (i = 47)
|
|
# CHECK-NEXT: j = 42
|
|
# CHECK-NEXT: }
|