summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionAttrs/2008-09-03-Mutual.ll
blob: 43411f860c308d5b7087db889e2c425688f14c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt %s -functionattrs | llvm-dis | 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
}