summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2013-06-19 13:43:18 +0000
committerHoward Hinnant <hhinnant@apple.com>2013-06-19 13:43:18 +0000
commit19e36dddb0023fad0c609328e6686d1bbbced718 (patch)
tree9a5ad3d845ee0e90d3e874b41defc2d941effff2 /test
parentc62cbea03e7fb9df073bc965d3f7fc5ca5a39438 (diff)
Demangle objc mangling implemented in r184250
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@184301 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/test_demangle.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_demangle.cpp b/test/test_demangle.cpp
index 5c4b3c7..ff85ed1 100644
--- a/test/test_demangle.cpp
+++ b/test/test_demangle.cpp
@@ -29582,6 +29582,8 @@ const char* cases[][2] =
{"_ZZN1S1fEiiEd0_NKUlvE_clEv", "S::f(int, int)::'lambda'()::operator()() const"},
{"_Z3fooPM2ABi", "foo(int AB::**)"},
{"_Z1rM1GFivEMS_KFivES_M1HFivES1_4whatIKS_E5what2IS8_ES3_", "r(int (G::*)(), int (G::*)() const, G, int (H::*)(), int (G::*)(), what<G const>, what2<G const>, int (G::*)() const)"},
+ {"_Z1fPU11objcproto1A11objc_object", "f(id<A>)"},
+ {"_Z1fPKU11objcproto1A7NSArray", "f(NSArray<A> const*)"},
};
const unsigned N = sizeof(cases) / sizeof(cases[0]);