Revision: 9163
Author: [email protected]
Date: Wed Sep 7 04:11:36 2011
Log: Fix presubmit failures.
[email protected]
Review URL: http://codereview.chromium.org/7837024
http://code.google.com/p/v8/source/detail?r=9163
Modified:
/branches/bleeding_edge/src/hydrogen.cc
=======================================
--- /branches/bleeding_edge/src/hydrogen.cc Wed Sep 7 04:02:31 2011
+++ /branches/bleeding_edge/src/hydrogen.cc Wed Sep 7 04:11:36 2011
@@ -3135,7 +3135,8 @@
switch (variable->location()) {
case Variable::UNALLOCATED: {
LookupResult lookup;
- GlobalPropertyAccess type = LookupGlobalProperty(variable, &lookup,
false);
+ GlobalPropertyAccess type =
+ LookupGlobalProperty(variable, &lookup, false);
if (type == kUseCell &&
info()->global_object()->IsAccessCheckNeeded()) {
@@ -3172,7 +3173,7 @@
return ast_context()->ReturnValue(value);
}
- case Variable::CONTEXT:{
+ case Variable::CONTEXT: {
if (variable->mode() == Variable::CONST) {
return Bailout("reference to const context slot");
}
@@ -3634,7 +3635,8 @@
int count = info()->scope()->num_parameters();
for (int i = 0; i < count; ++i) {
if (var == info()->scope()->parameter(i)) {
- Bailout("assignment to parameter, function uses arguments
object");
+ Bailout(
+ "assignment to parameter, function uses arguments
object");
}
}
}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev