mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-18 17:55:18 +00:00
The Neon vqdmlsl_lane and vqdmlal_lane intrinsics have 4 arguments, not 3.
llvm-svn: 121469
This commit is contained in:
parent
37bc9a74ac
commit
f99cd09e3f
@ -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…
x
Reference in New Issue
Block a user