Skip to content

Commit d9df0a9

Browse files
author
Davide Italiano
committed
[arm64] Remove an old special case that's not needed anymore.
Debug info generation & codegen now steps onto the correct line.
1 parent e74c516 commit d9df0a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ def setUp(self):
7070
self.bkpt_string = '// Set breakpoint here'
7171
self.breakpoint = line_number('main.cpp', self.bkpt_string)
7272

73-
if "gcc" in self.getCompiler() or self.isIntelCompiler() or self.getArchitecture() in ['arm64', 'arm64e']:
73+
if "gcc" in self.getCompiler() or self.isIntelCompiler():
7474
self.step_out_destination = line_number(
75-
'main.cpp', '// Expect to stop here after step-out (icc and gcc; arm64)')
75+
'main.cpp', '// Expect to stop here after step-out (icc and gcc)')
7676
else:
7777
self.step_out_destination = line_number(
7878
'main.cpp', '// Expect to stop here after step-out (clang)')

lldb/test/API/functionalities/thread/step_out/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ thread_func ()
3030
step_out_of_here(); // Expect to stop here after step-out (clang)
3131

3232
// Return
33-
return NULL; // Expect to stop here after step-out (icc and gcc; arm64)
33+
return NULL; // Expect to stop here after step-out (icc and gcc)
3434
}
3535

3636
int main ()

0 commit comments

Comments
 (0)