Chromium Code Reviews

Unified Diff: src/frames-arm.cc

Issue 62146: Add name inference for anonymous functions to facilitate debugging and profiling of JS code. (Closed)
Patch Set: updated v8_base_arm project Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/frames.cc ('k') | src/frames-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames-arm.cc
diff --git a/src/frames-arm.cc b/src/frames-arm.cc
index 121fb75be21afc29d742bf187d9d02fec2bd69d5..fe850a8722c73091d66a89244761bb4a132dc144 100644
--- a/src/frames-arm.cc
+++ b/src/frames-arm.cc
@@ -80,7 +80,7 @@ int JavaScriptFrame::GetProvidedParametersCount() const {
Address JavaScriptFrame::GetCallerStackPointer() const {
int arguments;
- if (Heap::gc_state() != Heap::NOT_IN_GC || disable_heap_access_) {
+ if (Heap::gc_state() != Heap::NOT_IN_GC) {
// The arguments for cooked frames are traversed as if they were
// expression stack elements of the calling frame. The reason for
// this rather strange decision is that we cannot access the
« no previous file with comments | « src/frames.cc ('k') | src/frames-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine