aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collingbourne <pcc@google.com>2018-11-14 20:05:29 -0800
committerandroid-build-merger <android-build-merger@google.com>2018-11-14 20:05:29 -0800
commit8e6124d263b0f5842bfb496478444b8118609a46 (patch)
tree6fbc03022923cf277f6dd4dc13008bfd8cc73523
parenta05b9d38613a147ffca258e55b9dbb60dfb2dfda (diff)
parent334a5a386cbb17c09f480ca367c90ba8551a8bb8 (diff)
downloadgoogle-breakpad-8e6124d263b0f5842bfb496478444b8118609a46.tar.gz
Rename an argument named "register" to "reg".
am: 334a5a386c Change-Id: I99b519f34a7cfdb6996dbcfd83c1d48e69e05cf7
-rw-r--r--src/common/dwarf/dwarf2reader.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/dwarf/dwarf2reader.cc b/src/common/dwarf/dwarf2reader.cc
index f2f3d581..a1e610dd 100644
--- a/src/common/dwarf/dwarf2reader.cc
+++ b/src/common/dwarf/dwarf2reader.cc
@@ -870,12 +870,12 @@ class CallFrameInfo::Rule {
public:
virtual ~Rule() { }
- // Tell HANDLER that, at ADDRESS in the program, REGISTER can be
- // recovered using this rule. If REGISTER is kCFARegister, then this rule
- // describes how to compute the canonical frame address. Return what the
- // HANDLER member function returned.
+ // Tell HANDLER that, at ADDRESS in the program, REG can be recovered using
+ // this rule. If REG is kCFARegister, then this rule describes how to compute
+ // the canonical frame address. Return what the HANDLER member function
+ // returned.
virtual bool Handle(Handler *handler,
- uint64 address, int register) const = 0;
+ uint64 address, int reg) const = 0;
// Equality on rules. We use these to decide which rules we need
// to report after a DW_CFA_restore_state instruction.