You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
This commit is contained in:
parent
a7724cd563
commit
279aa8f685
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