Revision: 3479 Author: [email protected] Date: Wed Dec 16 23:18:05 2009 Log: - Fix x64 build.
Review URL: http://codereview.chromium.org/500089 http://code.google.com/p/v8/source/detail?r=3479 Modified: /branches/bleeding_edge/src/x64/codegen-x64.cc /branches/bleeding_edge/src/x64/codegen-x64.h ======================================= --- /branches/bleeding_edge/src/x64/codegen-x64.cc Fri Dec 11 02:40:01 2009 +++ /branches/bleeding_edge/src/x64/codegen-x64.cc Wed Dec 16 23:18:05 2009 @@ -5127,7 +5127,7 @@ void CodeGenerator::GenericBinaryOperation(Token::Value op, - SmiAnalysis* type, + StaticType* type, OverwriteMode overwrite_mode) { Comment cmnt(masm_, "[ BinaryOperation"); Comment cmnt_token(masm_, Token::String(op)); @@ -5316,7 +5316,7 @@ void CodeGenerator::ConstantSmiBinaryOperation(Token::Value op, Result* operand, Handle<Object> value, - SmiAnalysis* type, + StaticType* type, bool reversed, OverwriteMode overwrite_mode) { // NOTE: This is an attempt to inline (a bit) more of the code for @@ -6099,7 +6099,7 @@ // a loop and the key is likely to be a smi. Property* property = expression()->AsProperty(); ASSERT(property != NULL); - SmiAnalysis* key_smi_analysis = property->key()->type(); + StaticType* key_smi_analysis = property->key()->type(); if (cgen_->loop_nesting() > 0 && key_smi_analysis->IsLikelySmi()) { Comment cmnt(masm, "[ Inlined store to keyed Property"); ======================================= --- /branches/bleeding_edge/src/x64/codegen-x64.h Fri Dec 11 02:40:01 2009 +++ /branches/bleeding_edge/src/x64/codegen-x64.h Wed Dec 16 23:18:05 2009 @@ -436,7 +436,7 @@ void GenericBinaryOperation( Token::Value op, - SmiAnalysis* type, + StaticType* type, OverwriteMode overwrite_mode); // If possible, combine two constant smi values using op to produce @@ -449,7 +449,7 @@ void ConstantSmiBinaryOperation(Token::Value op, Result* operand, Handle<Object> constant_operand, - SmiAnalysis* type, + StaticType* type, bool reversed, OverwriteMode overwrite_mode); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
