[Lldb-commits] [lldb] [lldb][TypeSystemClang] Add support for floating point template argument constants (PR #127206)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 17 00:24:32 PST 2025


================
@@ -544,7 +545,7 @@ bool operator==(const CompilerType &lhs, const CompilerType &rhs);
 bool operator!=(const CompilerType &lhs, const CompilerType &rhs);
 
 struct CompilerType::IntegralTemplateArgument {
-  llvm::APSInt value;
+  clang::APValue value;
----------------
labath wrote:

I just realized this is adding a clang dependency on lldb core (non-plugin) code. What would you say to making this a `Scalar` instead?

https://github.com/llvm/llvm-project/pull/127206


More information about the lldb-commits mailing list