diff options
author | David Blaikie <dblaikie@gmail.com> | 2022-03-21 19:37:39 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2022-03-22 19:19:54 +0000 |
commit | 4841dab4af0ec07f622d1844ef1c447eca509d63 (patch) | |
tree | ef8e6b5bc58902db1482eb4cf863966e4233dbd9 /cross-project-tests | |
parent | a3095a25d036aad8cdf1169647c0d0ec25fd4293 (diff) | |
download | llvm-4841dab4af0ec07f622d1844ef1c447eca509d63.zip llvm-4841dab4af0ec07f622d1844ef1c447eca509d63.tar.gz llvm-4841dab4af0ec07f622d1844ef1c447eca509d63.tar.bz2 |
llvm-dwarfdump: Including calling convention attribute in pretty printed type names
Diffstat (limited to 'cross-project-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 f24f166..5ecc3bc 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 @@ -323,6 +323,8 @@ int main() { f1<const unsigned _BitInt(5)>(); f1<void(t1<>, t1<>)>(); f1<int t1<>::*>(); + void fcc() __attribute__((swiftcall)); + f1<decltype(fcc)>(); } void t8::mem() { struct t7 { }; |