diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2015-01-16 08:38:45 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2015-01-16 08:38:45 +0000 |
commit | 60b721363c86ef4712aa26652ed6cbcd9768c3f9 (patch) | |
tree | cae8ca8d3c34df2ca31636f7d60f6609e9fc5f44 /llvm/test/Bitcode | |
parent | 24b04aa393d683404aec0e77a5d3915ed8f65eb0 (diff) | |
download | bcm5719-llvm-60b721363c86ef4712aa26652ed6cbcd9768c3f9.tar.gz bcm5719-llvm-60b721363c86ef4712aa26652ed6cbcd9768c3f9.zip |
Revert r226242 - Revert Revert Don't create new comdats in CodeGen
This breaks AddressSanitizer (ninja check-asan) on Windows
llvm-svn: 226251
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/linkage-types-3.2.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/Bitcode/linkage-types-3.2.ll b/llvm/test/Bitcode/linkage-types-3.2.ll index fb6cc5745fa..e255b619f41 100644 --- a/llvm/test/Bitcode/linkage-types-3.2.ll +++ b/llvm/test/Bitcode/linkage-types-3.2.ll @@ -33,13 +33,13 @@ ; CHECK: @available_externally.var = available_externally constant i32 0{{$}} @linkonce.var = linkonce constant i32 0 -; CHECK: @linkonce.var = linkonce constant i32 0, comdat{{$}} +; CHECK: @linkonce.var = linkonce constant i32 0{{$}} @weak.var = weak constant i32 0 -; CHECK: @weak.var = weak constant i32 0, comdat{{$}} +; CHECK: @weak.var = weak constant i32 0{{$}} @linkonce_odr.var = linkonce_odr constant i32 0 -; CHECK: @linkonce_odr.var = linkonce_odr constant i32 0, comdat{{$}} +; CHECK: @linkonce_odr.var = linkonce_odr constant i32 0{{$}} @linkonce_odr_auto_hide.var = linkonce_odr_auto_hide constant i32 0 ; CHECK: @linkonce_odr_auto_hide.var = constant i32 0{{$}} @@ -90,19 +90,19 @@ define available_externally void @available_externally() } define linkonce void @linkonce() -; CHECK: define linkonce void @linkonce() comdat { +; CHECK: define linkonce void @linkonce() { { ret void } define weak void @weak() -; CHECK: define weak void @weak() comdat { +; CHECK: define weak void @weak() { { ret void } define linkonce_odr void @linkonce_odr() -; CHECK: define linkonce_odr void @linkonce_odr() comdat { +; CHECK: define linkonce_odr void @linkonce_odr() { { ret void } |