Michael Kuperstein | be837fa | 2016-07-13 23:23:40 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+avx2 | FileCheck %s |
| 2 | |
| 3 | @0 = private constant [8 x i32] zeroinitializer |
| 4 | |
| 5 | ; CHECK-LABEL: foo: |
| 6 | ; CHECK: movl %esi, (%rdi) |
| 7 | ; CHECK-NEXT: retq |
| 8 | define void @foo(i32* %p, i32 %v, <8 x i1> %mask) { |
| 9 | store i32 %v, i32* %p |
| 10 | %wide.masked.load = call <8 x i32> @llvm.masked.load.v8i32.p0v8i32(<8 x i32>* bitcast (i32* getelementptr ([8 x i32], [8 x i32]* @0, i64 0, i64 0) to <8 x i32>*), i32 4, <8 x i1> %mask, <8 x i32> undef) |
| 11 | ret void |
| 12 | } |
| 13 | |
| 14 | declare <8 x i32> @llvm.masked.load.v8i32.p0v8i32(<8 x i32>*, i32, <8 x i1>, <8 x i32>) #0 |
| 15 | |
| 16 | attributes #0 = { argmemonly nounwind readonly } |