[LLDB] Remove a stray semicolon. NFC.

This fixes build warnings with at least GCC.

llvm-svn: 372588
This commit is contained in:
Martin Storsjo 2019-09-23 12:03:14 +00:00
parent fb31852fbc
commit 799d61f269
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ Scalar::Type Scalar::GetBestTypeForBitSize(size_t bit_size, bool sign) {
if (bit_size <= 512) return Scalar::e_uint512;
}
return Scalar::e_void;
};
}
void Scalar::TruncOrExtendTo(Scalar::Type type, uint16_t bits) {
switch (type) {