Index: src/full-codegen.h |
=================================================================== |
--- src/full-codegen.h (revision 10090) |
+++ src/full-codegen.h (working copy) |
@@ -390,7 +390,7 @@ |
// Bailout support. |
void PrepareForBailout(Expression* node, State state); |
- void PrepareForBailoutForId(int id, State state); |
+ void PrepareForBailoutForId(unsigned id, State state); |
Steven
2011/11/30 17:50:42
Indeed the ast node ids are represented by an 'uns
|
// Record a call's return site offset, used to rebuild the frame if the |
// called function was inlined at the site. |
@@ -417,7 +417,7 @@ |
// a loop. |
void EmitStackCheck(IterationStatement* stmt); |
// Record the OSR AST id corresponding to a stack check in the code. |
- void RecordStackCheck(int osr_ast_id); |
+ void RecordStackCheck(unsigned osr_ast_id); |
// Emit a table of stack check ids and pcs into the code stream. Return |
// the offset of the start of the table. |
unsigned EmitStackCheckTable(); |