[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / reference-temporary-ms.cpp
blob6c4101634920d4a812d8b09b1093fd7aa3eb3cd9
1 // RUN: %clang_cc1 %std_cxx98-14 -emit-llvm %s -o - -triple=i386-pc-win32 -fms-extensions | FileCheck %s --check-prefixes=CHECK,PRE17
2 // RUN: %clang_cc1 %std_cxx17- -emit-llvm %s -o - -triple=i386-pc-win32 -fms-extensions | FileCheck %s --check-prefixes=CHECK,CXX17
4 const int __declspec(dllexport) &Exported = 42;
6 // The reference temporary shouldn't be dllexport, even if the reference is.
7 // PRE17: @"?$RT1@Exported@@3ABHB" = internal constant i32 42
8 // CXX17: @"?$RT1@Exported@@3ABHB" = internal global i32 42
10 // CHECK: @"?Exported@@3ABHB" = dso_local dllexport constant ptr @"?$RT1@Exported@@3ABHB"