diff options
Diffstat (limited to 'lldb/test/functionalities/thread/step_out/main.cpp')
-rw-r--r-- | lldb/test/functionalities/thread/step_out/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/thread/step_out/main.cpp b/lldb/test/functionalities/thread/step_out/main.cpp index f6a9732903b..eb390d5de2e 100644 --- a/lldb/test/functionalities/thread/step_out/main.cpp +++ b/lldb/test/functionalities/thread/step_out/main.cpp @@ -43,7 +43,7 @@ thread_func (void *input) step_out_of_here(); // Expect to stop here after step-out (clang) // Return - return NULL; // Expect to stop here after step-out (gcc) + return NULL; // Expect to stop here after step-out (icc and gcc) } int main () |