aboutsummaryrefslogtreecommitdiff
path: root/src/common/dwarf/dwarf2reader.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dwarf/dwarf2reader.cc')
-rw-r--r--src/common/dwarf/dwarf2reader.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/dwarf/dwarf2reader.cc b/src/common/dwarf/dwarf2reader.cc
index b2b9d0de..1a397019 100644
--- a/src/common/dwarf/dwarf2reader.cc
+++ b/src/common/dwarf/dwarf2reader.cc
@@ -969,7 +969,7 @@ class CallFrameInfo::OffsetRule: public CallFrameInfo::Rule {
// computes the address at which a register is saved, not a value.
private:
int base_register_;
- int offset_;
+ long offset_;
};
// Rule: the value the register had in the caller is the value of
@@ -996,7 +996,7 @@ class CallFrameInfo::ValOffsetRule: public CallFrameInfo::Rule {
void SetOffset(long long offset) { offset_ = offset; }
private:
int base_register_;
- int offset_;
+ long offset_;
};
// Rule: the register has been saved in another register REGISTER_NUMBER_.