You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
27
external/llvm/test/Transforms/MergeFunc/functions.ll
vendored
Normal file
27
external/llvm/test/Transforms/MergeFunc/functions.ll
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
; RUN: opt -S -mergefunc < %s | FileCheck %s
|
||||
|
||||
; Be sure we don't merge cross-referenced functions of same type.
|
||||
|
||||
; CHECK-LABEL: @left
|
||||
; CHECK-LABEL: entry-block
|
||||
; CHECK-LABEL: call void @right(i64 %p)
|
||||
define void @left(i64 %p) {
|
||||
entry-block:
|
||||
call void @right(i64 %p)
|
||||
call void @right(i64 %p)
|
||||
call void @right(i64 %p)
|
||||
call void @right(i64 %p)
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @right
|
||||
; CHECK-LABEL: entry-block
|
||||
; CHECK-LABEL: call void @left(i64 %p)
|
||||
define void @right(i64 %p) {
|
||||
entry-block:
|
||||
call void @left(i64 %p)
|
||||
call void @left(i64 %p)
|
||||
call void @left(i64 %p)
|
||||
call void @left(i64 %p)
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user