summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/vec_narrow.ll
blob: b4c41f6d297d62ef667c743dc9f24b4824be4dc7 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: opt < %s -instcombine -S | grep "fadd float"


define float @test(<4 x float> %A, <4 x float> %B, float %f) {
        %C = insertelement <4 x float> %A, float %f, i32 0               ; <%V> [#uses=1]
        %D = fadd <4 x float> %C, %B              ; <%V> [#uses=1]
        %E = extractelement <4 x float> %D, i32 0                ; <float> [#uses=1]
        ret float %E
}