mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-09 05:31:37 +00:00
Add DIEInteger::setValue() method.
dsymutil needs to 'patch' attribute values after creating them. Just add this trivial capability. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231529 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f19fc85a4
commit
7557b1a4df
@ -278,6 +278,7 @@ public:
|
|||||||
void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override;
|
void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override;
|
||||||
|
|
||||||
uint64_t getValue() const { return Integer; }
|
uint64_t getValue() const { return Integer; }
|
||||||
|
void setValue(uint64_t Val) { Integer = Val; }
|
||||||
|
|
||||||
/// SizeOf - Determine size of integer value in bytes.
|
/// SizeOf - Determine size of integer value in bytes.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user