[Lldb-commits] [PATCH] D149262: [lldb] Add settings for expression evaluation memory allocations.

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 26 11:06:00 PDT 2023


jingham added inline comments.


================
Comment at: lldb/source/Expression/LLVMUserExpression.cpp:339
+      if (stack_frame_size == 0)
+        stack_frame_size = arch == llvm::Triple::msp430 ? 512 : 512 * 1024;
 
----------------
This doesn't seem appropriate in generic code.  You should ask the Arch plugin for this.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149262/new/

https://reviews.llvm.org/D149262



More information about the lldb-commits mailing list