aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/instructions
diff options
context:
space:
mode:
authorReinUsesLisp <[email protected]>2019-09-09 16:46:36 -0300
committerReinUsesLisp <[email protected]>2019-09-09 16:46:36 -0300
commitae7c664016471c08ba8fec252e0cab75db817286 (patch)
treeffabc6940dd896cec8e80a741ba1a1123d2ecac0 /src/instructions
parent4a0c6e03e173f140192d0cde3355e1f68ec51883 (diff)
downloadsirit-ae7c664016471c08ba8fec252e0cab75db817286.tar.gz
sirit-ae7c664016471c08ba8fec252e0cab75db817286.zip
Add OpAny and OpAll
Diffstat (limited to 'src/instructions')
-rw-r--r--src/instructions/logical.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/instructions/logical.cpp b/src/instructions/logical.cpp
index 87c5e2e..a40818b 100644
--- a/src/instructions/logical.cpp
+++ b/src/instructions/logical.cpp
@@ -35,6 +35,8 @@ namespace Sirit {
return AddCode(std::move(op)); \
}
+DEFINE_UNARY(OpAny, spv::Op::OpAny);
+DEFINE_UNARY(OpAll, spv::Op::OpAll);
DEFINE_UNARY(OpIsNan, spv::Op::OpIsNan)
DEFINE_UNARY(OpIsInf, spv::Op::OpIsInf)
DEFINE_BINARY(OpLogicalEqual, spv::Op::OpLogicalEqual)