diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-10-08 06:31:22 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-10-08 06:31:22 +0000 |
commit | c10b8381f761ad7ff9a8c34b687b9320e07f9726 (patch) | |
tree | f66049f87c7e1797eb3f6f0ca383c6bd58b1dee1 /clang/test/CodeGenCXX/inline-dllexport-member.cpp | |
parent | da5168b7ce40521abe005f7af7918ea3fd23a615 (diff) | |
download | bcm5719-llvm-c10b8381f761ad7ff9a8c34b687b9320e07f9726.tar.gz bcm5719-llvm-c10b8381f761ad7ff9a8c34b687b9320e07f9726.zip |
Update tests touched by r249656
These test updates almost exclusively around the change in behavior
around enum: enums without a definition are considered incomplete except
when targeting MSVC ABIs. Since these tests are interested in the
'incomplete-enum' behavior, restrict them to %itanium_abi_triple.
llvm-svn: 249660
Diffstat (limited to 'clang/test/CodeGenCXX/inline-dllexport-member.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/inline-dllexport-member.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/inline-dllexport-member.cpp b/clang/test/CodeGenCXX/inline-dllexport-member.cpp index fa78d068001..2160f32e0b4 100644 --- a/clang/test/CodeGenCXX/inline-dllexport-member.cpp +++ b/clang/test/CodeGenCXX/inline-dllexport-member.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple i686-windows-gnu -fms-compatibility -debug-info-kind=limited -emit-llvm %s -o - \ +// RUN: %clang_cc1 -triple i686-windows-win32 -fms-extensions -debug-info-kind=limited -emit-llvm %s -o - \ // RUN: | FileCheck %s struct __declspec(dllexport) s { @@ -6,6 +6,6 @@ struct __declspec(dllexport) s { }; // CHECK: ![[SCOPE:[0-9]+]] = distinct !DICompileUnit( -// CHECK: !DIGlobalVariable(name: "ui", linkageName: "_ZN1s2uiE", scope: ![[SCOPE]], -// CHECK-SAME: variable: i32* @_ZN1s2uiE +// CHECK: !DIGlobalVariable(name: "ui", linkageName: "\01?ui@s@@2IB", scope: ![[SCOPE]], +// CHECK-SAME: variable: i32* @"\01?ui@s@@2IB" |