1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-05-18-CastFoldBug.ll
Chris Lattner 01212372fa new testcase
llvm-svn: 37255
2007-05-19 06:50:37 +00:00

11 lines
333 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {call.*sret}
; Make sure instcombine doesn't drop the sret attribute.
define void @blah(i16* %tmp10) {
entry:
call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend_stret to void (i16* sret )*)( i16* %tmp10 sret )
ret void
}
declare i8* @objc_msgSend_stret(i8*, i8*, ...)