summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen
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
commit2b189a5b40c11db24980291e5a7627c25113d9dd (patch)
tree5024b4ae6849430465940d5e7be4804bd441d14d /llvm/utils/TableGen
parent3e672345bc54ca04df60a64644e489909c668b9a (diff)
downloadbcm5719-llvm-2b189a5b40c11db24980291e5a7627c25113d9dd.tar.gz
bcm5719-llvm-2b189a5b40c11db24980291e5a7627c25113d9dd.zip
Remove extra semicolons.
llvm-svn: 165757
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r--llvm/utils/TableGen/TGValueTypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/TGValueTypes.cpp b/llvm/utils/TableGen/TGValueTypes.cpp
index 07400cf7447..3ac71a49147 100644
--- a/llvm/utils/TableGen/TGValueTypes.cpp
+++ b/llvm/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();
}
OpenPOWER on IntegriCloud