summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2010-06-10 18:06:07 +0000
committerNate Begeman <natebegeman@mac.com>2010-06-10 18:06:07 +0000
commitd6645dd4fe788fb4a1b6a895142d72fab13070ee (patch)
treece0659da290510bf58c1e2a624324c36a591f7b7 /utils
parentfc6afa92d6599f1f325c96313701f790fb7f2e6a (diff)
downloadllvm-d6645dd4fe788fb4a1b6a895142d72fab13070ee.tar.gz
llvm-d6645dd4fe788fb4a1b6a895142d72fab13070ee.tar.bz2
llvm-d6645dd4fe788fb4a1b6a895142d72fab13070ee.tar.xz
Add support for polynomial type, for polynomial multiply
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105792 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index 1c5794c8c1..9153ac8377 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/utils/TableGen/NeonEmitter.cpp
@@ -595,6 +595,8 @@ static unsigned GetNeonEnum(const std::string &proto, StringRef typestr) {
ret |= 0x08;
if (quad)
ret |= 0x10;
+ if (poly)
+ ret |= 0x20;
switch (type) {
case 'c':