projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b8d949
)
Remove extra semicolons.
author
Chad Rosier
<mcrosier@apple.com>
Thu, 11 Oct 2012 22:25:56 +0000
(22:25 +0000)
committer
Chad Rosier
<mcrosier@apple.com>
Thu, 11 Oct 2012 22:25:56 +0000
(22:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165757
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/TGValueTypes.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/TGValueTypes.cpp
b/utils/TableGen/TGValueTypes.cpp
index 07400cf7447b528a187f5c90f1b645a8e7539c91..3ac71a49147f41ce1ce7970d4a07b6534ce119ac 100644
(file)
--- 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();
}