summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionAttrs/2009-05-06-Malloc.ll
blob: 488e6a9ec2ca198c287a466f3fa0cd8f4afeab34 (plain)
1
2
3
4
5
6
7
; RUN: opt < %s -functionattrs -S | not grep read
; PR3754

define i8* @m(i32 %size) {
	%tmp = malloc i8, i32 %size		; <i8*> [#uses=1]
	ret i8* %tmp
}