summaryrefslogtreecommitdiff
path: root/debuginfo-tests
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-05-21 18:17:06 +0000
committerDouglas Gregor <dgregor@apple.com>2011-05-21 18:17:06 +0000
commit097984480d5782367b61e4000324e507a7d95d64 (patch)
tree590ac16cbedc335e0e33e38032783a390a6bcd20 /debuginfo-tests
parent9574af6ea2c3c5337279e5aa4ebd0eef951c1a37 (diff)
downloadllvm-097984480d5782367b61e4000324e507a7d95d64.tar.gz
Clang is now correctly marking this as a class, so update the test case accordingly
llvm-svn: 131797
Diffstat (limited to 'debuginfo-tests')
-rw-r--r--debuginfo-tests/forward-declare-class.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/debuginfo-tests/forward-declare-class.cpp b/debuginfo-tests/forward-declare-class.cpp
index 30f5fd934bfe..c133d2c5871e 100644
--- a/debuginfo-tests/forward-declare-class.cpp
+++ b/debuginfo-tests/forward-declare-class.cpp
@@ -3,7 +3,8 @@
// Radar 9168773
// DEBUGGER: ptype A
-// CHECK: type = struct A {
+// CHECK: type = class A {
+// CHECK-NEXT: public:
// CHECK-NEXT: int MyData;
// CHECK-NEXT: }
class A;