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

Side by Side Diff: test/cctest/compiler/value-helper.h

Issue 1417163004: Remove obsolete src/v8.h include from compiler cctests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-cctest-api-deprecation
Patch Set: Created 5 years, 1 month 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 | « test/cctest/compiler/test-run-variables.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_CCTEST_COMPILER_VALUE_HELPER_H_ 5 #ifndef V8_CCTEST_COMPILER_VALUE_HELPER_H_
6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_ 6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_
7 7
8 #include "src/v8.h"
9
10 #include "src/compiler/common-operator.h" 8 #include "src/compiler/common-operator.h"
11 #include "src/compiler/node.h" 9 #include "src/compiler/node.h"
12 #include "src/compiler/node-matchers.h" 10 #include "src/compiler/node-matchers.h"
13 #include "src/isolate.h" 11 #include "src/isolate.h"
14 #include "src/objects.h" 12 #include "src/objects.h"
15 #include "test/cctest/cctest.h" 13 #include "test/cctest/cctest.h"
16 14
17 namespace v8 { 15 namespace v8 {
18 namespace internal { 16 namespace internal {
19 namespace compiler { 17 namespace compiler {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 195
198 #define FOR_INT32_SHIFTS(var) for (int32_t var = 0; var < 32; var++) 196 #define FOR_INT32_SHIFTS(var) for (int32_t var = 0; var < 32; var++)
199 197
200 #define FOR_UINT32_SHIFTS(var) for (uint32_t var = 0; var < 32; var++) 198 #define FOR_UINT32_SHIFTS(var) for (uint32_t var = 0; var < 32; var++)
201 199
202 } // namespace compiler 200 } // namespace compiler
203 } // namespace internal 201 } // namespace internal
204 } // namespace v8 202 } // namespace v8
205 203
206 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_ 204 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-run-variables.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698