diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-06-19 22:07:11 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-06-19 22:07:11 +0000 |
commit | 86feadcc767e0f9659f573836e5c36fe1dc1c407 (patch) | |
tree | fe946342ba8f33aaec838a58432933cc89e3d137 /debuginfo-tests | |
parent | 705a7b4cb72d1324fd82af478e11cef2bf27fccf (diff) | |
download | llvm-86feadcc767e0f9659f573836e5c36fe1dc1c407.tar.gz |
Now that we get non-trivial value parameters locations correct, un-XFAIL these tests.
llvm-svn: 184372
Diffstat (limited to 'debuginfo-tests')
-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 e3001de54fe9..f6b01b26dc8c 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 c65b7b61ca36..1903cdda53b8 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 |