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

Unified Diff: src/fast-accessor-assembler.cc

Issue 1875583003: Separate CodeAssembler and CodeStubAssembler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix gn build Created 4 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 side-by-side diff with in-line comments
Download patch
Index: src/fast-accessor-assembler.cc
diff --git a/src/fast-accessor-assembler.cc b/src/fast-accessor-assembler.cc
index cd2910ca132214374d7bc857099bdcb36370db0e..42e5dd5e58adcf6edfb8937048d3017c5d2fc15d 100644
--- a/src/fast-accessor-assembler.cc
+++ b/src/fast-accessor-assembler.cc
@@ -5,12 +5,12 @@
#include "src/fast-accessor-assembler.h"
#include "src/base/logging.h"
+#include "src/code-stub-assembler.h"
#include "src/code-stubs.h" // For CallApiCallbackStub.
-#include "src/compiler/code-stub-assembler.h"
#include "src/handles-inl.h"
#include "src/objects.h" // For FAA::LoadInternalField impl.
-using v8::internal::compiler::CodeStubAssembler;
+using v8::internal::CodeStubAssembler;
Michael Starzinger 2016/04/14 09:04:23 nit: The implementation inside this file now lives
danno 2016/04/18 11:00:04 Done.
using v8::internal::compiler::Node;
namespace v8 {

Powered by Google App Engine
This is Rietveld 408576698