mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-25 12:49:50 +00:00
Remove extra semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165757 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7b8d94933d
commit
fcb5e95c31
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user