[Lldb-commits] [PATCH] D80995: [Scalar] Fix assignment operator for long long.
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 3 04:54:22 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG798644e0a452: [Scalar] Fix assignment operator for long long. (authored by werat, committed by labath).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80995/new/
https://reviews.llvm.org/D80995
Files:
lldb/source/Utility/Scalar.cpp
lldb/unittests/Utility/ScalarTest.cpp
Index: lldb/unittests/Utility/ScalarTest.cpp
===================================================================
--- lldb/unittests/Utility/ScalarTest.cpp
+++ lldb/unittests/Utility/ScalarTest.cpp
@@ -188,6 +188,16 @@
ScalarGetValue(std::numeric_limits<unsigned long long>::max()));
}
+TEST(ScalarTest, LongLongAssigmentOperator) {
+ Scalar ull;
+ ull = std::numeric_limits<unsigned long long>::max();
+ EXPECT_EQ(std::numeric_limits<unsigned long long>::max(), ull.ULongLong());
+
+ Scalar sll;
+ sll = std::numeric_limits<signed long long>::max();
+ EXPECT_EQ(std::numeric_limits<signed long long>::max(), sll.SLongLong());
+}
+
TEST(ScalarTest, Division) {
Scalar lhs(5.0);
Scalar rhs(2.0);
Index: lldb/source/Utility/Scalar.cpp
===================================================================
--- lldb/source/Utility/Scalar.cpp
+++ lldb/source/Utility/Scalar.cpp
@@ -331,7 +331,7 @@
Scalar &Scalar::operator=(long long v) {
m_type = e_slonglong;
- m_integer = llvm::APInt(sizeof(long) * 8, v, true);
+ m_integer = llvm::APInt(sizeof(long long) * 8, v, true);
return *this;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D80995.268146.patch
Type: text/x-patch
Size: 1125 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200603/cc066bd4/attachment-0001.bin>
More information about the lldb-commits
mailing list