[Lldb-commits] [PATCH] D18981: Fix usage of APInt.getRawData for big-endian systems
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 14 01:56:50 PDT 2016
labath accepted this revision.
labath added a comment.
I am glad that the unit tests are finding real problems and not just being a nuisance. Thanks a lot.
================
Comment at: source/Core/Scalar.cpp:2655
@@ -2654,3 +2656,3 @@
int128.x[1] = (uint64_t)data.GetU64 (&offset);
- int128.x[0] = (uint64_t)data.GetU64 (&offset + 1);
}
----------------
:D
http://reviews.llvm.org/D18981
More information about the lldb-commits
mailing list