diff options
-rw-r--r-- | debuginfo-tests/aggregate-indirect-arg.cpp | 4 | ||||
-rw-r--r-- | debuginfo-tests/sret.cpp | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/debuginfo-tests/aggregate-indirect-arg.cpp b/debuginfo-tests/aggregate-indirect-arg.cpp index e3001de54fe..f6b01b26dc8 100644 --- a/debuginfo-tests/aggregate-indirect-arg.cpp +++ b/debuginfo-tests/aggregate-indirect-arg.cpp @@ -1,13 +1,11 @@ // RUN: %clangxx -O0 -g %s -c -o %t.o // RUN: %clangxx %t.o -o %t.out // RUN: %test_debuginfo %s %t.out -// XFail while getting location information right -// XFAIL: * // Radar 8945514 // DEBUGGER: break 22 // DEBUGGER: r // DEBUGGER: p v -// CHECK: $1 = (SVal &) +// CHECK: $1 = { // CHECK: Data = 0x0, // CHECK: Kind = 2142 diff --git a/debuginfo-tests/sret.cpp b/debuginfo-tests/sret.cpp index c65b7b61ca3..1903cdda53b 100644 --- a/debuginfo-tests/sret.cpp +++ b/debuginfo-tests/sret.cpp @@ -1,13 +1,11 @@ // RUN: %clangxx -O0 -g %s -c -o %t.o // RUN: %clangxx %t.o -o %t.out // RUN: %test_debuginfo %s %t.out -// XFail while getting location information right -// XFAIL: * // Radar 8775834 -// DEBUGGER: break 61 +// DEBUGGER: break 62 // DEBUGGER: r // DEBUGGER: p a -// CHECK: $1 = (A &) +// CHECK: $1 = { // CHECK: _vptr$A = // CHECK: m_int = 12 |