Commit dcd89af4 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Lint, schmlint!

Review URL: http://codereview.chromium.org/525114

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3567 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent eb6b3f60
......@@ -4696,7 +4696,7 @@ static void EmitIdenticalObjectComparison(MacroAssembler* masm,
__ mov(pc, Operand(lr)); // Return.
}
// No fall through here.
}
}
__ bind(&not_identical);
}
......@@ -6510,7 +6510,7 @@ void CallFunctionStub::Generate(MacroAssembler* masm) {
const char* CompareStub::GetName() {
switch(cc_) {
switch (cc_) {
case lt: return "CompareStub_LT";
case gt: return "CompareStub_GT";
case le: return "CompareStub_LE";
......
......@@ -1934,7 +1934,7 @@ void CodeGenerator::Comparison(AstNode* node,
if (left_side.is_constant()) {
left_side_constant_smi = left_side.handle()->IsSmi();
left_side_constant_null = left_side.handle()->IsNull();
left_side_constant_1_char_string =
left_side_constant_1_char_string =
(left_side.handle()->IsString() &&
(String::cast(*left_side.handle())->length() == 1));
}
......@@ -1944,7 +1944,7 @@ void CodeGenerator::Comparison(AstNode* node,
if (right_side.is_constant()) {
right_side_constant_smi = right_side.handle()->IsSmi();
right_side_constant_null = right_side.handle()->IsNull();
right_side_constant_1_char_string =
right_side_constant_1_char_string =
(right_side.handle()->IsString() &&
(String::cast(*right_side.handle())->length() == 1));
}
......
......@@ -7756,7 +7756,7 @@ int CompareStub::MinorKey() {
const char* CompareStub::GetName() {
switch(cc_) {
switch (cc_) {
case less: return "CompareStub_LT";
case greater: return "CompareStub_GT";
case less_equal: return "CompareStub_LE";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment