diff options
author | Erik Pilkington <erik.pilkington@gmail.com> | 2018-08-02 17:45:01 +0000 |
---|---|---|
committer | Erik Pilkington <erik.pilkington@gmail.com> | 2018-08-02 17:45:01 +0000 |
commit | 90dc82e955d38e30fd31506a7b8cfce831d06b71 (patch) | |
tree | 519fd854b8f649917cfca8b7bd510b0f09de8456 /libcxxabi/test/test_demangle.pass.cpp | |
parent | af3367d2ffe1c4dba01a4c85ea15c1391841d6e5 (diff) | |
download | bcm5719-llvm-90dc82e955d38e30fd31506a7b8cfce831d06b71.tar.gz bcm5719-llvm-90dc82e955d38e30fd31506a7b8cfce831d06b71.zip |
[itanium demangler] Support dot suffixes on block invocation functions
rdar://32378759
llvm-svn: 338747
Diffstat (limited to 'libcxxabi/test/test_demangle.pass.cpp')
-rw-r--r-- | libcxxabi/test/test_demangle.pass.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxxabi/test/test_demangle.pass.cpp b/libcxxabi/test/test_demangle.pass.cpp index 305e179f90c..7c1fd2dd669 100644 --- a/libcxxabi/test/test_demangle.pass.cpp +++ b/libcxxabi/test/test_demangle.pass.cpp @@ -29753,6 +29753,8 @@ const char* cases[][2] = // reference collapsing: {"_Z1fIR1SEiOT_", "int f<S&>(S&)"}, {"_Z1fIJR1SS0_EEiDpOT_", "int f<S&, S>(S&, S&&)"}, + + {"___Z3foo_block_invoke.25", "invocation function for block in foo"}, }; const unsigned N = sizeof(cases) / sizeof(cases[0]); |