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()) {


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to