[Lldb-commits] [PATCH] D50027: Added initial unit test for LLDB's Stream class.

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 1 04:47:41 PDT 2018


labath added inline comments.


================
Comment at: unittests/Utility/StreamTest.cpp:38-41
+TEST_F(StreamTest, ChangingByteOrder) {
+  s.SetByteOrder(lldb::eByteOrderPDP);
+  EXPECT_EQ(lldb::eByteOrderPDP, s.GetByteOrder());
+}
----------------
probinson wrote:
> teemperor wrote:
> > labath wrote:
> > > <musing> I've been wondering for a while whether we shouldn't just remove PDP byte order support. Most of our code doesn't really support it, and neither does llvm's, so this is kind of a prerequisite for switching to llvm streams. </musing>
> > I support this notion.  think most of LLDB's algorithms do not respect PDP ordering.
> PDP ordering?  As in, PDP-11?  I could imagine GDB had to support it many long ages ago, but AFAIK no such machine has been produced this century.
This millenium, even. :P

Ok, I'll see if I can dismantle it.


Repository:
  rL LLVM

https://reviews.llvm.org/D50027





More information about the lldb-commits mailing list