diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
| commit | 67c32a98315f785a9ec9d531c1f571a0196c7463 (patch) | |
| tree | 4abb9cbeecc7901726dd0b4a37369596c852e9ef /test/Feature/comdat.ll | |
| parent | 9f61947910e6ab40de38e6b4034751ef1513200f (diff) | |
Notes
Diffstat (limited to 'test/Feature/comdat.ll')
| -rw-r--r-- | test/Feature/comdat.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Feature/comdat.ll b/test/Feature/comdat.ll index 1e878bb71cd19..c2a9d63962930 100644 --- a/test/Feature/comdat.ll +++ b/test/Feature/comdat.ll @@ -6,16 +6,16 @@ $f = comdat any $f2 = comdat any ; CHECK-NOT: f2 -@v = global i32 0, comdat $f -; CHECK: @v = global i32 0, comdat $f +@v = global i32 0, comdat($f) +; CHECK: @v = global i32 0, comdat($f) @a = alias i32* @v ; CHECK: @a = alias i32* @v{{$}} -define void @f() comdat $f { +define void @f() comdat($f) { ret void } -; CHECK: define void @f() comdat $f +; CHECK: define void @f() comdat { $i = comdat largest -@i = internal global i32 0, comdat $i +@i = internal global i32 0, comdat($i) |
