diff options
Diffstat (limited to 'backend/src/ir/instruction.hpp')
-rw-r--r-- | backend/src/ir/instruction.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/src/ir/instruction.hpp b/backend/src/ir/instruction.hpp index 436bfd28..e1bd05be 100644 --- a/backend/src/ir/instruction.hpp +++ b/backend/src/ir/instruction.hpp @@ -686,6 +686,8 @@ namespace ir { Instruction GT(Type type, Register dst, Register src0, Register src1); /*! ord.type dst src0 src1 */ Instruction ORD(Type type, Register dst, Register src0, Register src1); + /*! sub_group_shuffle.type dst src0 src1 */ + Instruction SIMD_SHUFFLE(Type type, Register dst, Register src0, Register src1); /*! BITCAST.{dstType <- srcType} dst src */ Instruction BITCAST(Type dstType, Type srcType, Tuple dst, Tuple src, uint8_t dstNum, uint8_t srcNum); /*! cvt.{dstType <- srcType} dst src */ |