[Lldb-commits] [lldb] Add AddressRange to SB API (PR #92014)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Mon May 13 15:36:09 PDT 2024


================
@@ -0,0 +1,3 @@
+#include <iostream>
+
+int main() { std::cout << "Hello World!" << std::endl; }
----------------
clayborg wrote:

No need to use <iostream> here right? I would just do a simpler `main`:
```
int main() {
  return 0;
}
```
(remove `#include` and use of `std::cout`). This will reduce the size and speed up compilation.

https://github.com/llvm/llvm-project/pull/92014


More information about the lldb-commits mailing list