diff options
author | David Blaikie <dblaikie@gmail.com> | 2022-02-16 11:18:31 -0800 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2022-02-16 11:33:41 -0800 |
commit | d7c4f7f14732727eb2329272144405268a90e20f (patch) | |
tree | ca6795968e21f2b121be4457e3dd9589f4036df4 /cross-project-tests/debuginfo-tests | |
parent | da7c77b82c217592cc14f5b5a3c6a9e6741896af (diff) | |
download | llvm-d7c4f7f14732727eb2329272144405268a90e20f.tar.gz |
DebugInfo: fix a couple of spurious spaces in simplified template name rebuilding
Diffstat (limited to 'cross-project-tests/debuginfo-tests')
-rw-r--r-- | cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp index 3d9465188474..f24f166d88e2 100644 --- a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp +++ b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp @@ -321,6 +321,8 @@ int main() { t12 v4; f1<_BitInt(3)>(); f1<const unsigned _BitInt(5)>(); + f1<void(t1<>, t1<>)>(); + f1<int t1<>::*>(); } void t8::mem() { struct t7 { }; |