comparison test/CodeGen/X86/avx-shuffle-x86_32.ll @ 0:95c75e76d11b LLVM3.4

LLVM 3.4
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2013 13:56:28 +0900
parents
children afa8332a0e37
comparison
equal deleted inserted replaced
-1:000000000000 0:95c75e76d11b
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 }