summaryrefslogtreecommitdiffstats
path: root/src/frames.h
diff options
context:
space:
mode:
authorLeon Clarke <leonclarke@google.com>2010-01-27 16:31:12 +0000
committerLeon Clarke <leonclarke@google.com>2010-01-27 16:31:12 +0000
commiteab96aab0834f21954b5d6aa6366bcfb348ed811 (patch)
treea057ce0ab4f5fa5f37a3f468c60f750488908209 /src/frames.h
parent888f6729be6a6f6fbe246cb5a9f122e2dbe455b7 (diff)
downloadandroid_external_v8-eab96aab0834f21954b5d6aa6366bcfb348ed811.tar.gz
android_external_v8-eab96aab0834f21954b5d6aa6366bcfb348ed811.tar.bz2
android_external_v8-eab96aab0834f21954b5d6aa6366bcfb348ed811.zip
Revert "Pull from svn bleeding_edge@3716"
This reverts commit 888f6729be6a6f6fbe246cb5a9f122e2dbe455b7. (Waiting until v8 issue 554101 is in v8 rather than patching it straight into android)
Diffstat (limited to 'src/frames.h')
-rw-r--r--src/frames.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/frames.h b/src/frames.h
index 19860adb..024065ab 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -607,12 +607,11 @@ class SafeStackFrameIterator BASE_EMBEDDED {
void Advance();
void Reset();
+ private:
static bool IsWithinBounds(
Address low_bound, Address high_bound, Address addr) {
return low_bound <= addr && addr <= high_bound;
}
-
- private:
bool IsValidStackAddress(Address addr) const {
return IsWithinBounds(low_bound_, high_bound_, addr);
}