You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.234
Former-commit-id: 8071ec1a8c5eaa9be24b41745add19297608001f
This commit is contained in:
parent
f32dbaf0b2
commit
212f6bafcb
@ -1,48 +0,0 @@
|
||||
; All of the functions in this module must end up
|
||||
; in the same partition.
|
||||
|
||||
; RUN: llvm-split -j=2 -preserve-locals -o %t %s
|
||||
; RUN: llvm-dis -o - %t0 | FileCheck --check-prefix=CHECK1 %s
|
||||
; RUN: llvm-dis -o - %t1 | FileCheck --check-prefix=CHECK0 %s
|
||||
|
||||
; CHECK0: declare i32 @foo
|
||||
; CHECK0: declare i32 @baz
|
||||
; CHECK0: declare i32 @bar
|
||||
; CHECK0: declare i32 @bar2
|
||||
|
||||
; CHECK1: @bla
|
||||
; CHECK1: @bla2
|
||||
; CHECK1: define internal i32 @foo
|
||||
; CHECK1: define internal i32 @baz
|
||||
; CHECK1: define i32 @bar
|
||||
; CHECK1: define i32 @bar2
|
||||
|
||||
%struct.anon = type { i64, i64 }
|
||||
|
||||
@bla = internal global %struct.anon { i64 1, i64 2 }, align 8
|
||||
@bla2 = internal global %struct.anon { i64 1, i64 2 }, align 8
|
||||
|
||||
define internal i32 @foo() {
|
||||
entry:
|
||||
store i64 5, i64* getelementptr inbounds (%struct.anon, %struct.anon* @bla, i32 0, i32 0), align 8
|
||||
store i32 -1, i32* bitcast (i64* getelementptr inbounds (%struct.anon, %struct.anon* @bla2, i32 0, i32 1) to i32*), align 8
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
define internal i32 @baz() {
|
||||
entry:
|
||||
store i64 5, i64* getelementptr inbounds (%struct.anon, %struct.anon* @bla, i32 0, i32 0), align 8
|
||||
store i32 -1, i32* bitcast (i64* getelementptr inbounds (%struct.anon, %struct.anon* @bla2, i32 0, i32 1) to i32*), align 8
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
define i32 @bar() {
|
||||
%call = call i32 @foo()
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
define i32 @bar2() {
|
||||
%call = call i32 @baz()
|
||||
ret i32 0
|
||||
}
|
||||
|
Reference in New Issue
Block a user