summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/cast-malloc.ll
blob: 25eb4367c69593135df109d6a213adb5c9074395 (plain)
1
2
3
4
5
6
7
8
; test that casted mallocs get converted to malloc of the right type
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast

int* %test(uint %size) {
	%X = malloc long, uint %size
        %ret = bitcast long* %X to int*
	ret int* %ret
}