summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionAttrs/2008-09-03-Mutual.ll
blob: b0aecfa56f74ec0844a28c851a2c42036004e8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt < %s -functionattrs -S | grep readnone

define i32 @a() {
	%tmp = call i32 @b( )		; <i32> [#uses=1]
	ret i32 %tmp
}

define i32 @b() {
	%tmp = call i32 @a( )		; <i32> [#uses=1]
	ret i32 %tmp
}