1 // RUN: %clang_cc1 -triple i686-windows-msvc -emit-llvm -std=c++1y -O1 -disable-llvm-optzns -o - %s | FileCheck %s --check-prefix=MSVC
2 // RUN: %clang_cc1 -triple i686-windows-gnu  -emit-llvm -std=c++1y -O1 -disable-llvm-optzns -o - %s | FileCheck %s --check-prefix=GNU
3 
4 struct __declspec(dllimport) S {
fS5   virtual void f() {}
6 } s;
7 // MSVC-DAG: @"\01??_7S@@6B@" = available_externally dllimport
8 // MSVC-DAG: @"\01??_R0?AUS@@@8" = linkonce_odr
9 // MSVC-DAG: @"\01??_R1A@?0A@EA@S@@8" = linkonce_odr
10 // MSVC-DAG: @"\01??_R2S@@8" = linkonce_odr
11 // MSVC-DAG: @"\01??_R3S@@8" = linkonce_odr
12 
13 // GNU-DAG: @_ZTV1S = available_externally dllimport
14 // GNU-DAG: @_ZTI1S = external dllimport
15 
16 struct U : S {
17 } u;
18