Back out code for handling VectorType's in getFloatingRank.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61764 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-01-05 22:44:35 +00:00
Родитель 69d1d00293
Коммит 8141b755d3
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -1408,8 +1408,6 @@ QualType ASTContext::getBaseElementType(const VariableArrayType *VAT) {
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()) {