[cfe-commits] r61764 - /cfe/trunk/lib/AST/ASTContext.cpp

Daniel Dunbar daniel at zuster.org
Mon Jan 5 14:44:35 PST 2009


Author: ddunbar
Date: Mon Jan  5 16:44:35 2009
New Revision: 61764

URL: http://llvm.org/viewvc/llvm-project?rev=61764&view=rev
Log:
Back out code for handling VectorType's in getFloatingRank.

Modified:
    cfe/trunk/lib/AST/ASTContext.cpp

Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=61764&r1=61763&r2=61764&view=diff

==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Mon Jan  5 16:44:35 2009
@@ -1408,8 +1408,6 @@
 static FloatingRank getFloatingRank(QualType T) {
   if (const ComplexType *CT = T->getAsComplexType())
     return getFloatingRank(CT->getElementType());
-  if (const VectorType *VT = T->getAsExtVectorType())
-    return getFloatingRank(VT->getElementType());
 
   assert(T->getAsBuiltinType() && "getFloatingRank(): not a floating type");
   switch (T->getAsBuiltinType()->getKind()) {





More information about the cfe-commits mailing list