blob: 336a746fa3a418dc470b521a8f98e74cd06c453e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# REQUIRES: native && target-aarch64
# This test is specific to elf platforms.
# UNSUPPORTED: system-windows, system-darwin
# RUN: %clangxx_host %p/Inputs/aarch64_thunk.cc -g -o %t.out
# RUN: %lldb %t.out -s %s | FileCheck %s
b main
# CHECK: Breakpoint 1: where = step_through-aarch64-thunk.test.tmp.out`main
r
# CHECK: stop reason = breakpoint 1.1
s
# CHECK: stop reason = step in
# CHECK: frame #0: {{.*}} step_through-aarch64-thunk.test.tmp.out`::step_here()
|