diff options
author | Reid Kleckner <rnk@google.com> | 2018-12-17 23:16:43 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2018-12-17 23:16:43 +0000 |
commit | 1a94d877bfc88580d9a3279ccca49c352daa3265 (patch) | |
tree | 5802ecfb2c2f1fac34dde0125f05272cdc78330a /clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp | |
parent | d2f98772d008707a8d63f0679778659eb616c57e (diff) | |
download | bcm5719-llvm-1a94d877bfc88580d9a3279ccca49c352daa3265.tar.gz bcm5719-llvm-1a94d877bfc88580d9a3279ccca49c352daa3265.zip |
Fix ms-layout_version declspec test and add missing new test
Now that MSVC compatibility versions are stored as a four digit number
(1912) instead of a two digit number (19), we need to adjust how we
handle this attribute.
Also add a new test that was intended to be part of r349414.
llvm-svn: 349415
Diffstat (limited to 'clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp b/clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp new file mode 100644 index 00000000000..1aaf2486ea1 --- /dev/null +++ b/clang/test/CodeGenCXX/mangle-ms-exception-spec.cpp @@ -0,0 +1,42 @@ +// RUN: %clang_cc1 -std=c++11 -fms-extensions -emit-llvm %s -o - -triple=x86_64-pc-win32 -Wno-noexcept-type -fms-compatibility-version=19.12 | FileCheck %s --check-prefix=CHECK --check-prefix=CXX11 +// RUN: %clang_cc1 -std=c++17 -fms-extensions -emit-llvm %s -o - -triple=x86_64-pc-win32 | FileCheck %s --check-prefix=CHECK --check-prefix=NOCOMPAT +// RUN: %clang_cc1 -std=c++17 -fms-extensions -emit-llvm %s -o - -triple=x86_64-pc-win32 -fms-compatibility-version=19.12 | FileCheck %s --check-prefix=CHECK --check-prefix=CXX17 + +// Prove that mangling only changed for noexcept types under /std:C++17, not all noexcept functions +// CHECK-DAG: @"?nochange@@YAXXZ" +void nochange() noexcept {} + +// CXX11-DAG: @"?a@@YAXP6AHXZ@Z" +// NOCOMPAT-DAG: @"?a@@YAXP6AHXZ@Z" +// CXX17-DAG: @"?a@@YAXP6AHX_E@Z" +void a(int() noexcept) {} +// CHECK-DAG: @"?b@@YAXP6AHXZ@Z" +void b(int() noexcept(false)) {} +// CXX11-DAG: @"?c@@YAXP6AHXZ@Z" +// NOCOMPAT-DAG: @"?c@@YAXP6AHXZ@Z" +// CXX17-DAG: @"?c@@YAXP6AHX_E@Z" +void c(int() noexcept(true)) {} +// CHECK-DAG: @"?d@@YAXP6AHXZ@Z" +void d(int()) {} + +template <typename T> +class e; +template <typename T, typename... U> +class e<T(U...) noexcept> { + // CXX11-DAG: @"?ee@?$e@$$A6AXXZ@@EEAAXXZ" + // NOCOMPAT-DAG: @"?ee@?$e@$$A6AXXZ@@EEAAXXZ" + // CXX17-DAG: @"?ee@?$e@$$A6AXX_E@@EEAAXXZ" + virtual T ee(U &&...) noexcept {}; +}; + +e<void() noexcept> e1; + +template <typename T> +class f; +template <typename T, typename... U> +class f<T(U...)> { + // CHECK-DAG: @"?ff@?$f@$$A6AXXZ@@EEAAXXZ" + virtual T ff(U &&...) noexcept {}; +}; + +f<void()> f1; |