Mercurial > hg > CbC > CbC_llvm
comparison test/CodeGen/X86/avx512-vselect-crash.ll @ 33:e4204d083e25 LLVM3.5
LLVM 3.5
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 14:32:10 +0900 |
parents | |
children | 54457678186b |
comparison
equal
deleted
inserted
replaced
1:f783a2dd24b1 | 33:e4204d083e25 |
---|---|
1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s | |
2 | |
3 ; CHECK-LABEL: test | |
4 ; CHECK: vmovdqu32 | |
5 ; CHECK: ret | |
6 define <16 x i32> @test() { | |
7 entry: | |
8 %0 = icmp slt <16 x i32> undef, undef | |
9 %1 = select <16 x i1> %0, <16 x i32> undef, <16 x i32> zeroinitializer | |
10 ret <16 x i32> %1 | |
11 } |