[PATCH] D16294: [AVX512] Adding VPERMB instruction
Asaf Badouh via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 18 07:16:18 PST 2016
AsafBadouh added inline comments.
================
Comment at: lib/Target/X86/X86InstrAVX512.td:4197
@@ +4196,3 @@
+multiclass avx512_vperm_bw<bits<8> opc, string OpcodeStr,
+ Predicate pre1,Predicate pre2, SDNode OpNode,
+ AVX512VLVectorVTInfo _> {
----------------
you can pass only one predicate:
```
let Predicates = [prd] in {
....
}
let Predicates = [prd, HasVLX] in {
.....
}
}
```
http://reviews.llvm.org/D16294
More information about the llvm-commits
mailing list