mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
[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:
@@ -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 ()
|
||||
|
||||
Reference in New Issue
Block a user