| Index: test/cctest/compiler/test-run-machops.cc
|
| diff --git a/test/cctest/compiler/test-run-machops.cc b/test/cctest/compiler/test-run-machops.cc
|
| index 368f5e3687000db43c51966bf6817aa3a4214815..d014302db17cbf4e632721de62019bfe54071692 100644
|
| --- a/test/cctest/compiler/test-run-machops.cc
|
| +++ b/test/cctest/compiler/test-run-machops.cc
|
| @@ -18,8 +18,10 @@
|
| #include "test/cctest/compiler/value-helper.h"
|
|
|
| using namespace v8::base;
|
| -using namespace v8::internal;
|
| -using namespace v8::internal::compiler;
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
|
|
| typedef RawMachineAssembler::Label MLabel;
|
|
|
| @@ -5567,3 +5569,7 @@ TEST(RunComputedCodeObject) {
|
| CHECK_EQ(33, r.Call(1));
|
| CHECK_EQ(44, r.Call(0));
|
| }
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
|
|