Remove extra semicolons.

llvm-svn: 165757
This commit is contained in:
Chad Rosier 2012-10-11 22:25:56 +00:00
parent 3e672345bc
commit 2b189a5b40
1 changed files with 2 additions and 2 deletions

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();
}