diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-12-10 06:37:53 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-12-10 06:37:53 +0000 |
commit | c2ef82861600bb476507362d721089fb96dbda6f (patch) | |
tree | e93f52046ea392436ddc55b80b9625fc65d31bc1 /utils | |
parent | cdffa4fdc91280a517dd3a34b8a06ebdb6ef53fa (diff) |
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
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/NeonEmitter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 335c32b0e9..1d31104132 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -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, " + |