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

Unified Diff: test/cctest/test-regexp.cc

Issue 11275184: First draft of the sh4 port Base URL: http://github.com/v8/v8.git@master
Patch Set: Use GYP and fixe some typos Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-macro-assembler-sh4.cc ('k') | test/cctest/test-regressions-sh4.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-regexp.cc
diff --git a/test/cctest/test-regexp.cc b/test/cctest/test-regexp.cc
index e433b925e856f2d88cb5bd557090035812c535e8..414202eb915b2c376623a5fdd82878b47e846e48 100644
--- a/test/cctest/test-regexp.cc
+++ b/test/cctest/test-regexp.cc
@@ -54,6 +54,11 @@
#include "mips/macro-assembler-mips.h"
#include "mips/regexp-macro-assembler-mips.h"
#endif
+#ifdef V8_TARGET_ARCH_SH4
+#include "sh4/assembler-sh4.h"
+#include "sh4/macro-assembler-sh4.h"
+#include "sh4/regexp-macro-assembler-sh4.h"
+#endif
#ifdef V8_TARGET_ARCH_X64
#include "x64/assembler-x64.h"
#include "x64/macro-assembler-x64.h"
@@ -704,6 +709,8 @@ typedef RegExpMacroAssemblerX64 ArchRegExpMacroAssembler;
typedef RegExpMacroAssemblerARM ArchRegExpMacroAssembler;
#elif V8_TARGET_ARCH_MIPS
typedef RegExpMacroAssemblerMIPS ArchRegExpMacroAssembler;
+#elif V8_TARGET_ARCH_SH4
+typedef RegExpMacroAssemblerSH4 ArchRegExpMacroAssembler;
#endif
class ContextInitializer {
« no previous file with comments | « test/cctest/test-macro-assembler-sh4.cc ('k') | test/cctest/test-regressions-sh4.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698