File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lldb/test/API/functionalities/thread/step_out Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,9 +70,9 @@ def setUp(self):
70
70
self .bkpt_string = '// Set breakpoint here'
71
71
self .breakpoint = line_number ('main.cpp' , self .bkpt_string )
72
72
73
- if "gcc" in self .getCompiler () or self .isIntelCompiler () or self . getArchitecture () in [ 'arm64' , 'arm64e' ] :
73
+ if "gcc" in self .getCompiler () or self .isIntelCompiler ():
74
74
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)' )
76
76
else :
77
77
self .step_out_destination = line_number (
78
78
'main.cpp' , '// Expect to stop here after step-out (clang)' )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ thread_func ()
30
30
step_out_of_here (); // Expect to stop here after step-out (clang)
31
31
32
32
// 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)
34
34
}
35
35
36
36
int main ()
You can’t perform that action at this time.
0 commit comments