Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: src/codegen-arm.h

Issue 42008: Introduce a BreakTarget subclass of JumpTarget used to represent the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast.cc ('k') | src/codegen-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codegen-arm.h
===================================================================
--- src/codegen-arm.h (revision 1472)
+++ src/codegen-arm.h (working copy)
@@ -427,10 +427,6 @@
void CodeForStatementPosition(Node* node);
void CodeForSourcePosition(int pos);
- // Is the given jump target the actual (ie, non-shadowed) function return
- // target?
- bool IsActualFunctionReturn(JumpTarget* target);
-
#ifdef DEBUG
// True if the registers are valid for entry to a block.
bool HasValidEntryRegisters();
@@ -453,7 +449,7 @@
int break_stack_height_;
// Jump targets
- JumpTarget function_return_;
+ BreakTarget function_return_;
// True if the function return is shadowed (ie, jumping to the target
// function_return_ does not jump to the true function return, but rather
« no previous file with comments | « src/ast.cc ('k') | src/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698