From: Nate Begeman Date: Thu, 10 Jun 2010 18:06:07 +0000 (+0000) Subject: Add support for polynomial type, for polynomial multiply X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d6645dd4fe788fb4a1b6a895142d72fab13070ee;p=oota-llvm.git 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 --- diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 1c5794c8c17..9153ac83779 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':