[llvm-commits] [llvm] r165757 - /llvm/trunk/utils/TableGen/TGValueTypes.cpp
Chad Rosier
mcrosier at apple.com
Thu Oct 11 15:25:56 PDT 2012
Author: mcrosier
Date: Thu Oct 11 17:25:56 2012
New Revision: 165757
URL: http://llvm.org/viewvc/llvm-project?rev=165757&view=rev
Log:
Remove extra semicolons.
Modified:
llvm/trunk/utils/TableGen/TGValueTypes.cpp
Modified: llvm/trunk/utils/TableGen/TGValueTypes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/TGValueTypes.cpp?rev=165757&r1=165756&r2=165757&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/TGValueTypes.cpp (original)
+++ llvm/trunk/utils/TableGen/TGValueTypes.cpp Thu Oct 11 17:25:56 2012
@@ -47,7 +47,7 @@
: 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 @@
: 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();
}
More information about the llvm-commits
mailing list