mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
f907a26bc2
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225302 91177308-0d34-0410-b5e6-96231b3b80d8
66 lines
1.6 KiB
LLVM
66 lines
1.6 KiB
LLVM
; RUN: llvm-as %s -o %t.o
|
|
; RUN: llvm-as %p/Inputs/comdat.ll -o %t2.o
|
|
; RUN: ld -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t.o %t2.o \
|
|
; RUN: -plugin-opt=emit-llvm
|
|
; RUN: llvm-dis %t3.o -o - | FileCheck %s
|
|
|
|
$c1 = comdat any
|
|
|
|
@v1 = weak_odr global i32 42, comdat($c1)
|
|
define weak_odr i32 @f1(i8*) comdat($c1) {
|
|
bb10:
|
|
br label %bb11
|
|
bb11:
|
|
ret i32 42
|
|
}
|
|
|
|
@r11 = global i32* @v1
|
|
@r12 = global i32 (i8*)* @f1
|
|
|
|
@a11 = alias i32* @v1
|
|
@a12 = alias bitcast (i32* @v1 to i16*)
|
|
|
|
@a13 = alias i32 (i8*)* @f1
|
|
@a14 = alias bitcast (i32 (i8*)* @f1 to i16*)
|
|
@a15 = alias i16* @a14
|
|
|
|
; CHECK: $c1 = comdat any
|
|
; CHECK: $c2 = comdat any
|
|
|
|
; CHECK: @v1 = weak_odr global i32 42, comdat($c1)
|
|
|
|
; CHECK: @r11 = global i32* @v1{{$}}
|
|
; CHECK: @r12 = global i32 (i8*)* @f1{{$}}
|
|
|
|
; CHECK: @r21 = global i32* @v1{{$}}
|
|
; CHECK: @r22 = global i32 (i8*)* @f1{{$}}
|
|
|
|
; CHECK: @v11 = internal global i32 41, comdat($c2)
|
|
|
|
; CHECK: @a11 = alias i32* @v1{{$}}
|
|
; CHECK: @a12 = alias bitcast (i32* @v1 to i16*)
|
|
|
|
; CHECK: @a13 = alias i32 (i8*)* @f1{{$}}
|
|
; CHECK: @a14 = alias bitcast (i32 (i8*)* @f1 to i16*)
|
|
|
|
; CHECK: @a21 = alias i32* @v11{{$}}
|
|
; CHECK: @a22 = alias bitcast (i32* @v11 to i16*)
|
|
|
|
; CHECK: @a23 = alias i32 (i8*)* @f12{{$}}
|
|
; CHECK: @a24 = alias bitcast (i32 (i8*)* @f12 to i16*)
|
|
|
|
; CHECK: define weak_odr protected i32 @f1(i8*) comdat($c1) {
|
|
; CHECK-NEXT: bb10:
|
|
; CHECK-NEXT: br label %bb11{{$}}
|
|
; CHECK: bb11:
|
|
; CHECK-NEXT: ret i32 42
|
|
; CHECK-NEXT: }
|
|
|
|
; CHECK: define internal i32 @f12(i8* %this) comdat($c2) {
|
|
; CHECK-NEXT: bb20:
|
|
; CHECK-NEXT: store i8* %this, i8** null
|
|
; CHECK-NEXT: br label %bb21
|
|
; CHECK: bb21:
|
|
; CHECK-NEXT: ret i32 41
|
|
; CHECK-NEXT: }
|