charles-zablit wrote: Is this issue on Windows specifically?
>From what I understand, `eValueTypeConstResult` should only be used for >expression evaluation. Changing ```cpp case PDB_DataKind::Constant: scope = eValueTypeConstResult; break; ``` to ```cpp case PDB_DataKind::Constant: scope = eValueTypeVariableStatic; break; ``` would be a better fix. https://github.com/llvm/llvm-project/pull/197645 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
