1; RUN: opt < %s -instcombine -S | not grep bitcast 2 3define void @f(i16 %y) { 4 ret void 5} 6 7define i32 @g(i32 %y) { 8 %x = call i32 bitcast (void (i16)* @f to i32 (i32)*)( i32 %y ) ; <i32> [#uses=1] 9 ret i32 %x 10} 11