diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-06 22:55:16 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-01-06 22:55:16 +0000 |
| commit | 83a362cde8dda902ae516dbb1a721735a338abbb (patch) | |
| tree | 6e0316b50f28fe0ba8628ada534b2cf4017799db /llvm/test/Assembler | |
| parent | ed844c4ad1e403aff4eae0799eeccd21a3a36c90 (diff) | |
| download | bcm5719-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/Assembler')
| -rw-r--r-- | llvm/test/Assembler/invalid-comdat.ll | 2 | ||||
| -rw-r--r-- | llvm/test/Assembler/unnamed-comdat.ll | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/llvm/test/Assembler/invalid-comdat.ll b/llvm/test/Assembler/invalid-comdat.ll index 987e1e1e7d9..7351999df88 100644 --- a/llvm/test/Assembler/invalid-comdat.ll +++ b/llvm/test/Assembler/invalid-comdat.ll @@ -1,4 +1,4 @@ ; RUN: not llvm-as < %s 2>&1 | FileCheck %s -@v = global i32 0, comdat $v +@v = global i32 0, comdat($v) ; CHECK: use of undefined comdat '$v' diff --git a/llvm/test/Assembler/unnamed-comdat.ll b/llvm/test/Assembler/unnamed-comdat.ll new file mode 100644 index 00000000000..8aa0f78c974 --- /dev/null +++ b/llvm/test/Assembler/unnamed-comdat.ll @@ -0,0 +1,6 @@ +; RUN: not llvm-as < %s 2>&1 | FileCheck %s +; CHECK: comdat cannot be unnamed + +define void @0() comdat { + ret void +} |

