2006-11-27 01:05:10 +00:00
|
|
|
; test that casted mallocs get converted to malloc of the right type
|
2008-03-09 08:16:40 +00:00
|
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
|
2007-01-26 08:25:06 +00:00
|
|
|
; 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"
|
2008-03-09 08:16:40 +00:00
|
|
|
|
|
|
|
define i32* @test(i32 %size) {
|
|
|
|
%X = malloc i64, i32 %size ; <i64*> [#uses=1]
|
|
|
|
%ret = bitcast i64* %X to i32* ; <i32*> [#uses=1]
|
|
|
|
ret i32* %ret
|
2006-11-27 01:05:10 +00:00
|
|
|
}
|
2008-03-09 08:16:40 +00:00
|
|
|
|