Warren Ristow | 8d17b40 | 2017-02-02 17:53:34 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple i686-windows-msvc -emit-llvm -std=c++11 -fms-extensions -O0 -o - %s | FileCheck --check-prefix=M32 %s |
| 2 | // RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm -std=c++11 -fms-extensions -O0 -o - %s | FileCheck --check-prefix=M64 %s |
| 3 | |
| 4 | struct __declspec(dllexport) SomeStruct { |
| 5 | // Copy assignment operator should be produced, and exported: |
| 6 | // M32: define weak_odr dllexport x86_thiscallcc dereferenceable({{[0-9]+}}) %struct.SomeStruct* @"\01??4SomeStruct@@QAEAAU0@ABU0@@Z" |
| 7 | // M64: define weak_odr dllexport dereferenceable({{[0-9]+}}) %struct.SomeStruct* @"\01??4SomeStruct@@QEAAAEAU0@AEBU0@@Z" |
| 8 | _Atomic(int) mData; |
| 9 | }; |