summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionAttrs/2009-05-06-Malloc.ll
blob: 5cc92759d2489abfd6e943dad7671f89fb1eba4d (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
}