mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 01:42:09 +00:00
The Neon vqdmlsl_lane and vqdmlal_lane intrinsics have 4 arguments, not 3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121469 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cdffa4fdc9
commit
c2ef828616
@ -665,12 +665,12 @@ static std::string GenOpString(OpKind op, const std::string &proto,
|
||||
SplatLane(nElts, "__b", "__c") + ");";
|
||||
break;
|
||||
case OpQDMlalLane:
|
||||
s += MangleName("vqdmlal", typestr, ClassS) + "(__a, " +
|
||||
SplatLane(nElts, "__b", "__c") + ");";
|
||||
s += MangleName("vqdmlal", typestr, ClassS) + "(__a, __b, " +
|
||||
SplatLane(nElts, "__c", "__d") + ");";
|
||||
break;
|
||||
case OpQDMlslLane:
|
||||
s += MangleName("vqdmlsl", typestr, ClassS) + "(__a, " +
|
||||
SplatLane(nElts, "__b", "__c") + ");";
|
||||
s += MangleName("vqdmlsl", typestr, ClassS) + "(__a, __b, " +
|
||||
SplatLane(nElts, "__c", "__d") + ");";
|
||||
break;
|
||||
case OpQDMulhLane:
|
||||
s += MangleName("vqdmulh", typestr, ClassS) + "(__a, " +
|
||||
|
Loading…
Reference in New Issue
Block a user