diff options
author | Reid Kleckner <rnk@google.com> | 2018-03-16 20:36:49 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2018-03-16 20:36:49 +0000 |
commit | fb93154bf147513339409e3640372ca3453060eb (patch) | |
tree | 4b10908f63a9919f3978c6276f95a959b5c3e475 /clang/test/CodeGenCXX/dllimport-rtti.cpp | |
parent | 889cbcacbc037556a9105bf1feac4baa856759aa (diff) | |
download | bcm5719-llvm-fb93154bf147513339409e3640372ca3453060eb.tar.gz bcm5719-llvm-fb93154bf147513339409e3640372ca3453060eb.zip |
[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
Diffstat (limited to 'clang/test/CodeGenCXX/dllimport-rtti.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/dllimport-rtti.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/CodeGenCXX/dllimport-rtti.cpp b/clang/test/CodeGenCXX/dllimport-rtti.cpp index 619d95606ba..d8e6f8e1b9a 100644 --- a/clang/test/CodeGenCXX/dllimport-rtti.cpp +++ b/clang/test/CodeGenCXX/dllimport-rtti.cpp @@ -5,11 +5,11 @@ struct __declspec(dllimport) S { virtual void f() {} } s; // MSVC: [[VF_S:.*]] = private unnamed_addr constant { [2 x i8*] } -// MSVC-DAG: @"\01??_SS@@6B@" = unnamed_addr alias i8*, getelementptr inbounds ({ [2 x i8*] }, { [2 x i8*] }* [[VF_S]], i32 0, i32 0, i32 1) -// MSVC-DAG: @"\01??_R0?AUS@@@8" = linkonce_odr -// MSVC-DAG: @"\01??_R1A@?0A@EA@S@@8" = linkonce_odr -// MSVC-DAG: @"\01??_R2S@@8" = linkonce_odr -// MSVC-DAG: @"\01??_R3S@@8" = linkonce_odr +// MSVC-DAG: @"??_SS@@6B@" = unnamed_addr alias i8*, getelementptr inbounds ({ [2 x i8*] }, { [2 x i8*] }* [[VF_S]], i32 0, i32 0, i32 1) +// MSVC-DAG: @"??_R0?AUS@@@8" = linkonce_odr +// MSVC-DAG: @"??_R1A@?0A@EA@S@@8" = linkonce_odr +// MSVC-DAG: @"??_R2S@@8" = linkonce_odr +// MSVC-DAG: @"??_R3S@@8" = linkonce_odr // GNU-DAG: @_ZTV1S = available_externally dllimport // GNU-DAG: @_ZTI1S = linkonce_odr dso_local |