You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
611 B
28 lines
611 B
; 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
|
|
}
|