summaryrefslogtreecommitdiff
path: root/backend/src/ir/instruction.hxx
diff options
context:
space:
mode:
authorBenjamin Segovia <bsegovia@bsegovia-i70.sc.intel.com>2012-10-10 19:05:59 +0000
committerBenjamin Segovia <bsegovia@bsegovia-i70.sc.intel.com>2012-10-12 19:44:05 +0000
commitb8d957a216b54bda80c3cae7f0c6cc548c374f63 (patch)
treee50656fb2248ba58892c6e7908f6fdb51c37df0c /backend/src/ir/instruction.hxx
parentfecf9e53aa18f3e5c68a167888249613d05b003f (diff)
Added support for various math functions
Diffstat (limited to 'backend/src/ir/instruction.hxx')
-rw-r--r--backend/src/ir/instruction.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/ir/instruction.hxx b/backend/src/ir/instruction.hxx
index 9e5e3945..6704acc3 100644
--- a/backend/src/ir/instruction.hxx
+++ b/backend/src/ir/instruction.hxx
@@ -28,10 +28,10 @@
DECL_INSN(MOV, UnaryInstruction)
DECL_INSN(COS, UnaryInstruction)
DECL_INSN(SIN, UnaryInstruction)
-DECL_INSN(TAN, UnaryInstruction)
DECL_INSN(LOG, UnaryInstruction)
DECL_INSN(SQR, UnaryInstruction)
DECL_INSN(RSQ, UnaryInstruction)
+DECL_INSN(RCP, UnaryInstruction)
DECL_INSN(POW, BinaryInstruction)
DECL_INSN(MUL, BinaryInstruction)
DECL_INSN(ADD, BinaryInstruction)