summaryrefslogtreecommitdiffstats
path: root/llvm/test/Linker/constructor-comdat.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2015-01-06 22:55:16 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2015-01-06 22:55:16 +0000
commit83a362cde8dda902ae516dbb1a721735a338abbb (patch)
tree6e0316b50f28fe0ba8628ada534b2cf4017799db /llvm/test/Linker/constructor-comdat.ll
parented844c4ad1e403aff4eae0799eeccd21a3a36c90 (diff)
downloadbcm5719-llvm-83a362cde8dda902ae516dbb1a721735a338abbb.tar.gz
bcm5719-llvm-83a362cde8dda902ae516dbb1a721735a338abbb.zip
Change the .ll syntax for comdats and add a syntactic sugar.
In order to make comdats always explicit in the IR, we decided to make the syntax a bit more compact for the case of a GlobalObject in a comdat with the same name. Just dropping the $name causes problems for @foo = globabl i32 0, comdat $bar = comdat ... and declare void @foo() comdat $bar = comdat ... So the syntax is changed to @g1 = globabl i32 0, comdat($c1) @g2 = globabl i32 0, comdat and declare void @foo() comdat($c1) declare void @foo() comdat llvm-svn: 225302
Diffstat (limited to 'llvm/test/Linker/constructor-comdat.ll')
-rw-r--r--llvm/test/Linker/constructor-comdat.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Linker/constructor-comdat.ll b/llvm/test/Linker/constructor-comdat.ll
index 42e2d83424a..dfc899208aa 100644
--- a/llvm/test/Linker/constructor-comdat.ll
+++ b/llvm/test/Linker/constructor-comdat.ll
@@ -7,7 +7,7 @@ $_ZN3fooIiEC5Ev = comdat any
@_ZN3fooIiEC1Ev = weak_odr alias void ()* @_ZN3fooIiEC2Ev
; CHECK: @_ZN3fooIiEC1Ev = weak_odr alias void ()* @_ZN3fooIiEC2Ev
-; CHECK: define weak_odr void @_ZN3fooIiEC2Ev() comdat $_ZN3fooIiEC5Ev {
-define weak_odr void @_ZN3fooIiEC2Ev() comdat $_ZN3fooIiEC5Ev {
+; CHECK: define weak_odr void @_ZN3fooIiEC2Ev() comdat($_ZN3fooIiEC5Ev) {
+define weak_odr void @_ZN3fooIiEC2Ev() comdat($_ZN3fooIiEC5Ev) {
ret void
}
OpenPOWER on IntegriCloud