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

Side by Side Diff: test/compiler-unittests/common-operator-unittest.h

Issue 530693002: [turbofan] Merge compiler unit tests into src. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_
6 #define V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_
7
8 #include "src/compiler/common-operator.h"
9 #include "test/compiler-unittests/compiler-unittests.h"
10
11 namespace v8 {
12 namespace internal {
13 namespace compiler {
14
15 class CommonOperatorTest : public CompilerTest {
16 public:
17 CommonOperatorTest();
18 virtual ~CommonOperatorTest();
19
20 protected:
21 CommonOperatorBuilder* common() { return &common_; }
22
23 private:
24 CommonOperatorBuilder common_;
25 };
26
27 } // namespace compiler
28 } // namespace internal
29 } // namespace v8
30
31 #endif // V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_
OLDNEW
« no previous file with comments | « test/compiler-unittests/change-lowering-unittest.cc ('k') | test/compiler-unittests/common-operator-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698