[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 09:00:17 PST 2016


mamai added a comment.

Scalar::operator<<= works well as-is because it uses  APInt &operator<<=(unsigned shiftAmt), whereas the right shift equivalent is not implemented. Should I add APInt &operator>>=, or should I change Scalar::operator<<=  for consistency ?


Repository:
  rL LLVM

http://reviews.llvm.org/D16868





More information about the lldb-commits mailing list