[arm64] Remove an old special case that's not needed anymore.

Debug info generation & codegen now steps onto the correct line.
This commit is contained in:
Davide Italiano 2020-05-04 14:16:17 -07:00
parent a29f603ef0
commit 6951fe3989
2 changed files with 3 additions and 3 deletions

View File

@ -70,9 +70,9 @@ class ThreadStepOutTestCase(TestBase):
self.bkpt_string = '// Set breakpoint here'
self.breakpoint = line_number('main.cpp', self.bkpt_string)
if "gcc" in self.getCompiler() or self.isIntelCompiler() or self.getArchitecture() in ['arm64', 'arm64e']:
if "gcc" in self.getCompiler() or self.isIntelCompiler():
self.step_out_destination = line_number(
'main.cpp', '// Expect to stop here after step-out (icc and gcc; arm64)')
'main.cpp', '// Expect to stop here after step-out (icc and gcc)')
else:
self.step_out_destination = line_number(
'main.cpp', '// Expect to stop here after step-out (clang)')

View File

@ -22,7 +22,7 @@ thread_func ()
step_out_of_here(); // Expect to stop here after step-out (clang)
// Return
return NULL; // Expect to stop here after step-out (icc and gcc; arm64)
return NULL; // Expect to stop here after step-out (icc and gcc)
}
int main ()