Prettier ppc disasm.
This commit is contained in:
@@ -14,7 +14,7 @@ using namespace alloy::runtime;
|
||||
|
||||
|
||||
DebugInfo::DebugInfo() :
|
||||
source_disasm_(0),
|
||||
source_disasm_(0), source_json_(0),
|
||||
raw_hir_disasm_(0),
|
||||
hir_disasm_(0),
|
||||
raw_lir_disasm_(0),
|
||||
@@ -24,6 +24,7 @@ DebugInfo::DebugInfo() :
|
||||
|
||||
DebugInfo::~DebugInfo() {
|
||||
xe_free(source_disasm_);
|
||||
xe_free(source_json_);
|
||||
xe_free(raw_hir_disasm_);
|
||||
xe_free(hir_disasm_);
|
||||
xe_free(raw_lir_disasm_);
|
||||
|
||||
@@ -24,6 +24,8 @@ public:
|
||||
|
||||
const char* source_disasm() const { return source_disasm_; }
|
||||
void set_source_disasm(char* value) { source_disasm_ = value; }
|
||||
const char* source_json() const { return source_json_; }
|
||||
void set_source_json(char* value) { source_json_ = value; }
|
||||
const char* raw_hir_disasm() const { return raw_hir_disasm_; }
|
||||
void set_raw_hir_disasm(char* value) { raw_hir_disasm_ = value; }
|
||||
const char* hir_disasm() const { return hir_disasm_; }
|
||||
@@ -42,6 +44,7 @@ public:
|
||||
|
||||
private:
|
||||
char* source_disasm_;
|
||||
char* source_json_;
|
||||
char* raw_hir_disasm_;
|
||||
char* hir_disasm_;
|
||||
char* raw_lir_disasm_;
|
||||
|
||||
Reference in New Issue
Block a user