Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/X86/vec_set-8.ll @ 100:7d135dc70f03 LLVM 3.9
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | 95c75e76d11b |
children | 1172e4bd9c6f |
rev | line source |
---|---|
0 | 1 ; RUN: llc < %s -mtriple=x86_64-linux -mattr=-avx | FileCheck %s |
2 ; RUN: llc < %s -mtriple=x86_64-win32 -mattr=-avx | FileCheck %s | |
3 ; CHECK-NOT: movsd | |
4 ; CHECK: movd {{%rdi|%rcx}}, %xmm0 | |
5 ; CHECK-NOT: movsd | |
6 | |
7 define <2 x i64> @test(i64 %i) nounwind { | |
8 entry: | |
9 %tmp10 = insertelement <2 x i64> undef, i64 %i, i32 0 | |
10 %tmp11 = insertelement <2 x i64> %tmp10, i64 0, i32 1 | |
11 ret <2 x i64> %tmp11 | |
12 } | |
13 |