You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
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