[Lldb-commits] [PATCH] D16868: [lldb] Fix invalid shift operator overload in Scalar
Marianne Mailhot-Sarrasin via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 8 06:43:58 PST 2016
mamai added reviewers: labath, tberghammer.
mamai updated this revision to Diff 47190.
Repository:
rL LLVM
http://reviews.llvm.org/D16868
Files:
source/Core/Scalar.cpp
Index: source/Core/Scalar.cpp
===================================================================
--- source/Core/Scalar.cpp
+++ source/Core/Scalar.cpp
@@ -1875,7 +1875,7 @@
case e_sint128:
case e_uint128:
{
- m_integer >> *rhs.m_integer.getRawData();
+ m_integer = m_integer.ashr(*(const uint_t *)rhs.m_integer.getRawData());
break;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16868.47190.patch
Type: text/x-patch
Size: 453 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160208/834df7dc/attachment.bin>
More information about the lldb-commits
mailing list