diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-14 20:55:48 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-14 20:55:48 +0000 |
commit | fad1639a12a60735545a4d59a35c82841131a51a (patch) | |
tree | 6f75700c5b7772d05bf515f7dc3c9a5df766b428 /llvm/test/CodeGen/ARM/section-name.ll | |
parent | 55f74e829bb173ecc70ed2b83f565add5df4fa7d (diff) | |
download | bcm5719-llvm-fad1639a12a60735545a4d59a35c82841131a51a.tar.gz bcm5719-llvm-fad1639a12a60735545a4d59a35c82841131a51a.zip |
Don't create new comdats in CodeGen.
This patch stops the implicit creation of comdats during codegen.
Clang now sets the comdat explicitly when it is required. With this patch clang and gcc
now produce the same result in pr19848.
llvm-svn: 226038
Diffstat (limited to 'llvm/test/CodeGen/ARM/section-name.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/section-name.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/section-name.ll b/llvm/test/CodeGen/ARM/section-name.ll index a0aad4733bc..a4c6054197f 100644 --- a/llvm/test/CodeGen/ARM/section-name.ll +++ b/llvm/test/CodeGen/ARM/section-name.ll @@ -16,7 +16,7 @@ entry: ret void } -; CHECK: .section .text.test3,"axG",%progbits,test3,comdat +; CHECK: .text ; CHECK: .weak test3 ; CHECK: .type test3,%function define linkonce_odr void @test3() { |