aboutsummaryrefslogtreecommitdiff
path: root/include/operator.def
diff options
context:
space:
mode:
authorMatthew Haddon <matthew.haddon@arm.com>2021-08-23 16:40:57 +0100
committerKevin Cheng <kevin.cheng@arm.com>2021-08-23 12:58:31 -0700
commitab905ec865a9f4889e6818ce1c4bc934cff2070d (patch)
treee9afd7343c0fd03e54323fba4ae406e95d69248d /include/operator.def
parent3ce563449c1e607b016b82c5dbb6e33883f846a5 (diff)
downloadserialization_lib-ab905ec865a9f4889e6818ce1c4bc934cff2070d.tar.gz
Rename DIV operator to INTDIV
* In line with the TOSA spec the DIV operator has been renamed INTDIV Signed-off-by: Matthew Haddon <matthew.haddon@arm.com> Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: I17407dd50985d117e2e565ffb45afb3424e5a139
Diffstat (limited to 'include/operator.def')
-rw-r--r--include/operator.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/operator.def b/include/operator.def
index 0329dd2..83155d8 100644
--- a/include/operator.def
+++ b/include/operator.def
@@ -49,7 +49,7 @@ DEF_OPERATOR(arithmetic_right_shift, ARITHMETIC_RIGHT_SHIFT, ArithmeticRightS
DEF_OPERATOR(bitwise_and, BITWISE_AND, BitwiseAnd, None, None)
DEF_OPERATOR(bitwise_or, BITWISE_OR, BitwiseOr, None, None)
DEF_OPERATOR(bitwise_xor, BITWISE_XOR, BitwiseXor, None, None)
-DEF_OPERATOR(div, DIV, Div, None, None)
+DEF_OPERATOR(intdiv, INTDIV, Intdiv, None, None)
DEF_OPERATOR(logical_and, LOGICAL_AND, LogicalAnd, None, None)
DEF_OPERATOR(logical_left_shift, LOGICAL_LEFT_SHIFT, LogicalLeftShift, None, None)
DEF_OPERATOR(logical_right_shift, LOGICAL_RIGHT_SHIFT, LogicalRightShift, None, None)