shafik added inline comments.
================
Comment at: lldb/source/Core/IOHandler.cpp:374
+ if (got_line) {
+ goto gotLine;
+ }
----------------
A `goto` is not warranted here, using `if (!got_line && !in` is perfectly fine
and less lines.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107704/new/
https://reviews.llvm.org/D107704
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
