[debuginfo-tests] Update line numbers in llgdb-tests/nrvo-string.cpp (#188901)

Update the line numbers in llgdb-tests/nrvo-string.cpp for #188780 which
shifts the file by 6 lines.
This commit is contained in:
Jonas Devlieghere 2026-03-26 22:28:00 -05:00 committed by GitHub
parent e55fb5de0f
commit f9acb06ce4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ struct string {
string __attribute__((noinline)) get_string() {
string unused;
string result = 3;
// DEBUGGER: break 23
// DEBUGGER: break 29
stop();
return result;
}
@ -41,7 +41,7 @@ string2 __attribute__((noinline)) get_string2() {
some_function(result.i);
// Test that the debugger can get the value of result after another
// function is called.
// DEBUGGER: break 39
// DEBUGGER: break 45
stop();
return result;
}