The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. This fork is used to manage Swift’s stable releases of Clang as well as support the Swift project.
commit 6a8a4d51a4415aa453b79f999bed411bad6c3723
Author: Adrian Prantl <aprantl@apple.com>
Date: Thu Nov 21 15:37:04 2024 -0800
[lldb] Refactor UserExpression::Evaluate to only have one error channel. (#117186)
Prior to this patch, the function returned an exit status, sometimes a
ValueObject with an error and a Status object. This patch removes the
Status object and ensures the error is consistently returned as the
error of the ValueObject.