forked from OSchip/llvm-project
[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:
parent
a29f603ef0
commit
6951fe3989
|
@ -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)')
|
||||
|
|
|
@ -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 ()
|
||||
|
|
Loading…
Reference in New Issue