================ @@ -0,0 +1,8 @@ +#include <limits.h> + +int main() { + volatile int a = INT_MAX; + volatile int b = 1; + volatile int c = a + b; + return c; ---------------- DavidSpickett wrote:
I think this could be done in one line. `return INT_MAX + 1;` assuming INT_MAX defaults to `unsigned int` still. https://github.com/llvm/llvm-project/pull/151231 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits