mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
17 lines
331 B
LLVM
17 lines
331 B
LLVM
|
; RUN: opt < %s -functionattrs -S | FileCheck %s
|
||
|
|
||
|
; See PR26774
|
||
|
|
||
|
; CHECK-LABEL: define void @bar(i8* readonly) {
|
||
|
define void @bar(i8* readonly) {
|
||
|
call void @foo(i8* %0)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
|
||
|
; CHECK-LABEL: define linkonce_odr void @foo(i8* readonly) {
|
||
|
define linkonce_odr void @foo(i8* readonly) {
|
||
|
call void @bar(i8* %0)
|
||
|
ret void
|
||
|
}
|