aboutsummaryrefslogtreecommitdiff
path: root/cross-project-tests
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2022-01-05 13:25:13 -0800
committerDavid Blaikie <dblaikie@gmail.com>2022-01-05 20:29:29 -0800
commit06c154602ed6f2619ab7cba8c4dfd190d7fa62f5 (patch)
treee2af4c2e9c97742521257c513b12f3edbf7d4f15 /cross-project-tests
parent2c384c37727660f11f63fda461210d1a6f5d2afe (diff)
downloadllvm-06c154602ed6f2619ab7cba8c4dfd190d7fa62f5.zip
llvm-06c154602ed6f2619ab7cba8c4dfd190d7fa62f5.tar.gz
llvm-06c154602ed6f2619ab7cba8c4dfd190d7fa62f5.tar.bz2
DebugInfo: Rebuild varargs function types correctly
Improves llvm-dwarfdump output and for simplified template names roundtripping.
Diffstat (limited to 'cross-project-tests')
-rw-r--r--cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp2
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 312229f..61ac76d 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
@@ -217,6 +217,8 @@ int main() {
f1<decltype(L)>();
t3<decltype(L)> v1;
f1<int(float)>();
+ f1<void(...)>();
+ f1<void(int, ...)>();
f1<const int &>();
f1<const int *&>();
f1<t5>();