Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: src/stub-cache.cc

Issue 8364004: Fix presubmit failure. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/stub-cache.cc
diff --git a/src/stub-cache.cc b/src/stub-cache.cc
index b1619b575213c524cf815d31bfffcfcb66fe26c1..47e7f64c44cc591ce1865c9a3bdb61e500f14811 100644
--- a/src/stub-cache.cc
+++ b/src/stub-cache.cc
@@ -985,7 +985,8 @@ Handle<Code> StubCache::ComputeCallInitialize(int argc, RelocInfo::Mode mode) {
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 @@ MaybeObject* StubCompiler::TryCompileCallDebugBreak(Code::Flags flags) {
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);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698