Reid Kleckner fb93154bf1 [MS] Don't escape MS C++ names with \01
It is not needed after LLVM r327734. Now it will be easier to copy-paste
IR symbol names from Clang.

llvm-svn: 327738
2018-03-16 20:36:49 +00:00

20 lines
390 B
C++

// RUN: %clang_cc1 %s -triple i686-pc-win32 -fms-extensions -emit-llvm -o - | FileCheck %s
template <typename>
struct __declspec(dllimport) S {
S();
};
template <typename T>
struct __declspec(dllimport) U {
static S<T> u;
};
template <typename T>
S<T> U<T>::u;
template S<int> U<int>::u;
// CHECK-NOT: define internal void @"??__Eu@?$U@H@@2U?$S@H@@A@YAXXZ"(
S<int> &i = U<int>::u;