projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb31852
)
[LLDB] Remove a stray semicolon. NFC.
author
Martin Storsjo
<martin@martin.st>
Mon, 23 Sep 2019 12:03:14 +0000
(12:03 +0000)
committer
Martin Storsjo
<martin@martin.st>
Mon, 23 Sep 2019 12:03:14 +0000
(12:03 +0000)
This fixes build warnings with at least GCC.
llvm-svn: 372588
lldb/source/Utility/Scalar.cpp
patch
|
blob
|
history
diff --git
a/lldb/source/Utility/Scalar.cpp
b/lldb/source/Utility/Scalar.cpp
index
3393af9
..
e9aec17
100644
(file)
--- a/
lldb/source/Utility/Scalar.cpp
+++ b/
lldb/source/Utility/Scalar.cpp
@@
-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) {