summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-10-11 22:25:56 +0000
committerChad Rosier <mcrosier@apple.com>2012-10-11 22:25:56 +0000
commitfcb5e95c310f37f648c2150fabc861fb687e3732 (patch)
tree418c8c921a1b50505f0109dbf731481127514eb4 /utils
parent7b8d94933d6c04ae11bc4607cab61b7d712c5c10 (diff)
downloadllvm-fcb5e95c310f37f648c2150fabc861fb687e3732.tar.gz
llvm-fcb5e95c310f37f648c2150fabc861fb687e3732.tar.bz2
llvm-fcb5e95c310f37f648c2150fabc861fb687e3732.tar.xz
Remove extra semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/TGValueTypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/TGValueTypes.cpp b/utils/TableGen/TGValueTypes.cpp
index 07400cf744..3ac71a4914 100644
--- a/utils/TableGen/TGValueTypes.cpp
+++ b/utils/TableGen/TGValueTypes.cpp
@@ -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();
}