[Lldb-commits] [lldb] [LLDB] Add unary plus and minus to DIL (PR #155617)
Ilia Kuklin via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 17 10:13:21 PDT 2025
================
@@ -0,0 +1,8 @@
+int main(int argc, char **argv) {
+ int array[10];
+ array[0] = 0;
+ int (&array_ref)[10] = array;
+ int *p_int0 = &array[0];
+
+ return 0; // Set a breakpoint here
----------------
kuilpd wrote:
I haven't been doing this for other tests, should I make a separate commit changing this in all DIL tests?
https://github.com/llvm/llvm-project/pull/155617
More information about the lldb-commits
mailing list