aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index b22e068c69..62edea344a 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1516,6 +1516,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ElementWiseUnary &op
case ElementWiseUnary::EXP:
os << "EXP";
break;
+ case ElementWiseUnary::NEG:
+ os << "NEG";
+ break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
}