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

Side by Side Diff: src/ic/ic.cc

Issue 2797253009: Fix static initializer in ic.cc (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | tools/callstats.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/ic/ic.h" 5 #include "src/ic/ic.h"
6 6
7 #include <iostream>
8
9 #include "src/accessors.h" 7 #include "src/accessors.h"
10 #include "src/api-arguments-inl.h" 8 #include "src/api-arguments-inl.h"
11 #include "src/api.h" 9 #include "src/api.h"
12 #include "src/arguments.h" 10 #include "src/arguments.h"
13 #include "src/base/bits.h" 11 #include "src/base/bits.h"
14 #include "src/codegen.h" 12 #include "src/codegen.h"
15 #include "src/conversions.h" 13 #include "src/conversions.h"
16 #include "src/execution.h" 14 #include "src/execution.h"
17 #include "src/field-type.h" 15 #include "src/field-type.h"
18 #include "src/frames-inl.h" 16 #include "src/frames-inl.h"
(...skipping 2888 matching lines...) Expand 10 before | Expand all | Expand 10 after
2907 DCHECK_EQ(LookupIterator::INTERCEPTOR, it.state()); 2905 DCHECK_EQ(LookupIterator::INTERCEPTOR, it.state());
2908 it.Next(); 2906 it.Next();
2909 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, 2907 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
2910 Object::GetProperty(&it)); 2908 Object::GetProperty(&it));
2911 } 2909 }
2912 2910
2913 return *result; 2911 return *result;
2914 } 2912 }
2915 } // namespace internal 2913 } // namespace internal
2916 } // namespace v8 2914 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | tools/callstats.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698