diff options
Diffstat (limited to 'test/Transforms/InstCombine/vec_narrow.ll')
-rw-r--r-- | test/Transforms/InstCombine/vec_narrow.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Transforms/InstCombine/vec_narrow.ll b/test/Transforms/InstCombine/vec_narrow.ll index ca94b08..9063148 100644 --- a/test/Transforms/InstCombine/vec_narrow.ll +++ b/test/Transforms/InstCombine/vec_narrow.ll @@ -1,12 +1,12 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \ +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \ ; RUN: grep {add float} -%V = type <4 x float> + %V = type <4 x float> -float %test(%V %A, %V %B, float %f) { - %C = insertelement %V %A, float %f, uint 0 - %D = add %V %C, %B - %E = extractelement %V %D, uint 0 +define float @test(%V %A, %V %B, float %f) { + %C = insertelement %V %A, float %f, i32 0 ; <%V> [#uses=1] + %D = add %V %C, %B ; <%V> [#uses=1] + %E = extractelement %V %D, i32 0 ; <float> [#uses=1] ret float %E } |