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.
14 lines
295 B
14 lines
295 B
7 months ago
|
; RUN: opt < %s -functionattrs -S | FileCheck %s
|
||
|
|
||
|
; CHECK: define void @bar(i8* nocapture readnone)
|
||
|
define void @bar(i8* readonly) {
|
||
|
call void @foo(i8* %0)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
; CHECK: define void @foo(i8* nocapture readnone)
|
||
|
define void @foo(i8* readonly) {
|
||
|
call void @bar(i8* %0)
|
||
|
ret void
|
||
|
}
|