• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -instcombine -S | not grep extractelement
2
3define i32 @test(float %f) {
4        %tmp7 = insertelement <4 x float> undef, float %f, i32 0                ; <<4 x float>> [#uses=1]
5        %tmp17 = bitcast <4 x float> %tmp7 to <4 x i32>         ; <<4 x i32>> [#uses=1]
6        %tmp19 = extractelement <4 x i32> %tmp17, i32 0         ; <i32> [#uses=1]
7        ret i32 %tmp19
8}
9
10