Add a triple to switch.ll test.
[oota-llvm.git] / test / CodeGen / X86 / avx-shuffle-x86_32.ll
1 ; RUN: llc < %s -mtriple=i686-pc-win32 -mcpu=corei7-avx -mattr=+avx | FileCheck %s
2
3 define <4 x i64> @test1(<4 x i64> %a) nounwind {
4  %b = shufflevector <4 x i64> %a, <4 x i64> undef, <4 x i32> <i32 1, i32 3, i32 5, i32 7>
5  ret <4 x i64>%b
6  ; CHECK-LABEL: test1:
7  ; CHECK-NOT: vinsertf128
8  }