Add a test for the foldSelectICmpAndOr fix committed in r180779.
[oota-llvm.git] / test / Transforms / InstCombine / vec_extract_var_elt.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2
3 define void @test (float %b, <8 x float> * %p)  {
4 ; CHECK: extractelement
5 ; CHECK: fptosi
6   %1 = load <8 x float> * %p
7   %2 = bitcast <8 x float> %1 to <8 x i32>
8   %3 = bitcast <8 x i32> %2 to <8 x float>
9   %a = fptosi <8 x float> %3 to <8 x i32>
10   %4 = fptosi float %b to i32
11   %5 = add i32 %4, -2
12   %6 = extractelement <8 x i32> %a, i32 %5
13   %7 = insertelement <8 x i32> undef, i32 %6, i32 7
14   %8 = sitofp <8 x i32> %7 to <8 x float>
15   store <8 x float> %8, <8 x float>* %p
16   ret void    
17 }
18