aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/NeonEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/NeonEmitter.cpp')
-rw-r--r--utils/TableGen/NeonEmitter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index 7fdc1cacd6..d3a068091c 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/utils/TableGen/NeonEmitter.cpp
@@ -601,6 +601,11 @@ static std::string GenOpString(OpKind op, const std::string &proto,
Extend(proto, typestr,
Duplicate(nElts << (int)quad, typestr, "__b")) + ";";
break;
+ case OpMullLane:
+ s += Extend(proto, typestr, "__a") + " * " +
+ Extend(proto, typestr,
+ SplatLane(nElts, "__b", "__c")) + ";";
+ break;
case OpMull:
s += Extend(proto, typestr, "__a") + " * " +
Extend(proto, typestr, "__b") + ";";