Remove extra semicolons.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165757 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier 2012-10-11 22:25:56 +00:00
parent 7b8d94933d
commit fcb5e95c31

View File

@ -47,7 +47,7 @@ public:
: Type(TK_ExtendedIntegerType), BitWidth(bits) {}
static bool classof(const Type *T) {
return T->getKind() == TK_ExtendedIntegerType;
};
}
unsigned getSizeInBits() const {
return getBitWidth();
}
@ -64,7 +64,7 @@ public:
: Type(TK_ExtendedVectorType), ElementType(elty), NumElements(num) {}
static bool classof(const Type *T) {
return T->getKind() == TK_ExtendedVectorType;
};
}
unsigned getSizeInBits() const {
return getNumElements() * getElementType().getSizeInBits();
}