commit | 40381fb9dc4b4cf274f1e58b2cdf4396202c6189 | [log] [tgz] |
---|---|---|
author | Brian Carlstrom <bdc@google.com> | Wed Oct 19 14:13:40 2011 -0700 |
committer | Brian Carlstrom <bdc@google.com> | Thu Oct 20 12:19:25 2011 -0700 |
tree | 8281b105d3e8a0850984f0ee182db01c33613f27 | |
parent | b06631143b944388fc68bedf6679c006dde5f461 [diff] [blame] |
Reuse SIRT for C++ references Change-Id: I8310e55da42f55f7ec60f6b17face436c77a979f
diff --git a/test/ReferenceMap/stack_walk_refmap_jni.cc b/test/ReferenceMap/stack_walk_refmap_jni.cc index c19ccf9..ca46569 100644 --- a/test/ReferenceMap/stack_walk_refmap_jni.cc +++ b/test/ReferenceMap/stack_walk_refmap_jni.cc
@@ -29,7 +29,7 @@ void VisitFrame(const Frame& frame, uintptr_t pc) { Method* m = frame.GetMethod(); - if (!m ||m->IsNative()) { + if (!m || m->IsNative()) { return; } LOG(INFO) << "At " << PrettyMethod(m, false);