2006-11-27 01:05:10 +00:00
|
|
|
; test that casted mallocs get converted to malloc of the right type
|
2007-01-26 08:25:06 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
|
|
|
|
; RUN: not grep bitcast
|
2006-11-27 01:05:10 +00:00
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
; The target datalayout is important for this test case. We have to tell
|
|
|
|
; instcombine that the ABI alignment for a long is 4-bytes, not 8, otherwise
|
|
|
|
; it won't do the transform.
|
2007-02-15 00:54:16 +00:00
|
|
|
target datalayout = "e-i64:32:64"
|
2006-11-27 01:05:10 +00:00
|
|
|
int* %test(uint %size) {
|
|
|
|
%X = malloc long, uint %size
|
|
|
|
%ret = bitcast long* %X to int*
|
|
|
|
ret int* %ret
|
|
|
|
}
|