Revision: 9730
Author:   [email protected]
Date:     Thu Oct 20 10:28:14 2011
Log:      Fix presubmit failure.

[email protected]
BUG=
TEST=

Review URL: http://codereview.chromium.org/8364004
http://code.google.com/p/v8/source/detail?r=9730

Modified:
 /branches/bleeding_edge/src/stub-cache.cc

=======================================
--- /branches/bleeding_edge/src/stub-cache.cc   Thu Oct 20 10:08:53 2011
+++ /branches/bleeding_edge/src/stub-cache.cc   Thu Oct 20 10:28:14 2011
@@ -985,7 +985,8 @@


 Handle<Code> StubCache::ComputeKeyedCallInitialize(int argc) {
- return ComputeCallInitialize(argc, RelocInfo::CODE_TARGET, Code::KEYED_CALL_IC);
+  return ComputeCallInitialize(argc, RelocInfo::CODE_TARGET,
+                               Code::KEYED_CALL_IC);
 }


@@ -1622,9 +1623,10 @@


Handle<Code> StubCompiler::CompileCallDebugPrepareStepIn(Code::Flags flags) {
-  CALL_HEAP_FUNCTION(isolate(),
- (set_failure(NULL), TryCompileCallDebugPrepareStepIn(flags)),
-                     Code);
+  CALL_HEAP_FUNCTION(
+      isolate(),
+      (set_failure(NULL), TryCompileCallDebugPrepareStepIn(flags)),
+      Code);
 }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to