aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/fixmatheval.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_gui/fixmatheval.cpp')
-rw-r--r--qtmips_gui/fixmatheval.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/qtmips_gui/fixmatheval.cpp b/qtmips_gui/fixmatheval.cpp
index f695e30..c06d892 100644
--- a/qtmips_gui/fixmatheval.cpp
+++ b/qtmips_gui/fixmatheval.cpp
@@ -231,7 +231,11 @@ bool FmeExpression::parse(const QString &expression, QString &error) {
FmeValue (*binary_op)(FmeValue &a, FmeValue &b) = nullptr;
FmeValue (*unary_op)(FmeValue &a) = nullptr;
int prio = base_prio;
- if (ch == '-') {
+
+ if (ch == '~') {
+ prio += 90;
+ unary_op = [](FmeValue &a) -> FmeValue { return ~a; };
+ } else if (ch == '-') {
if (is_unary) {
prio += 90;
unary_op = [](FmeValue &a) -> FmeValue { return -a; };
@@ -256,6 +260,9 @@ bool FmeExpression::parse(const QString &expression, QString &error) {
} else if (ch == '&') {
binary_op = [](FmeValue &a, FmeValue &b) -> FmeValue { return a & b; };
prio += 15;
+ } else if (ch == '^') {
+ binary_op = [](FmeValue &a, FmeValue &b) -> FmeValue { return a ^ b; };
+ prio += 15;
} else if (ch == '(') {
base_prio += 100;
} else if (ch == ')') {