Add support for polynomial type, for polynomial multiply
authorNate Begeman <natebegeman@mac.com>
Thu, 10 Jun 2010 18:06:07 +0000 (18:06 +0000)
committerNate Begeman <natebegeman@mac.com>
Thu, 10 Jun 2010 18:06:07 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105792 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/NeonEmitter.cpp

index 1c5794c8c1743c5f26021c80a850be10c7c8e3f4..9153ac837791e9b2e65556f178d09481bf49c3ee 100644 (file)
@@ -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':