================ @@ -178,6 +179,54 @@ class BitFieldExtractionNode : public ASTNode { int64_t m_last_index; }; +class IntegerLiteralNode : public ASTNode { +public: + IntegerLiteralNode(uint32_t location, llvm::APInt value, uint32_t radix, + bool is_unsigned, bool is_long, bool is_longlong) + : ASTNode(location, NodeKind::eScalarLiteralNode), m_value(value), ---------------- labath wrote:
```suggestion : ASTNode(location, NodeKind::eScalarLiteralNode), m_value(std::move(value)), ``` https://github.com/llvm/llvm-project/pull/152308 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits