diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-12-03 17:50:54 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-12-03 17:50:54 +0000 |
commit | 4740dabd14c8660d641228d75ed91bf7e6753b77 (patch) | |
tree | 58bb14a4cce907ae38adc4ee4f22f34309118540 | |
parent | 953d513c7ee79b3d9e37597e64317e75c0fbf7f6 (diff) |
Add missing vext_f32 and vextq_f32 Neon intrinsics (Radar 8592601).
For some reason these were not included in the list of Neon intrinsics in
ARM's documentation, so they didn't make it into Clang either.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120815 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/arm_neon.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/arm_neon.td b/include/clang/Basic/arm_neon.td index cb60db62e9..35fc2372b1 100644 --- a/include/clang/Basic/arm_neon.td +++ b/include/clang/Basic/arm_neon.td @@ -324,7 +324,8 @@ def VQDMLSL_N : SInst<"vqdmlsl_n", "wwda", "si">; //////////////////////////////////////////////////////////////////////////////// // E.3.26 Vector Extract -def VEXT : WInst<"vext", "dddi", "cUcPcsUsPsiUilUlQcQUcQPcQsQUsQPsQiQUiQlQUl">; +def VEXT : WInst<"vext", "dddi", + "cUcPcsUsPsiUilUlfQcQUcQPcQsQUsQPsQiQUiQlQUlQf">; //////////////////////////////////////////////////////////////////////////////// // E.3.27 Reverse vector elements (sdap endianness) |