ARM64: Fix native cctest

CPUFeatures::Probe has been modified such that it can be called only once, but
the cctests make two calls in native builds: once in VM init, and once in each
test setup. This patch removes the call in the test setup.

BUG=
R=ulan@chromium.org

Review URL: https://codereview.chromium.org/285273003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21337 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
m.m.capewell@googlemail.com 2014-05-16 12:09:42 +00:00
parent 04043b3352
commit ce8dab82f7

View File

@ -173,8 +173,7 @@ static void InitializeVM() {
ASSERT(isolate != NULL); \
byte* buf = new byte[buf_size]; \
MacroAssembler masm(isolate, buf, buf_size); \
RegisterDump core; \
CpuFeatures::Probe(false);
RegisterDump core;
#define RESET() \
__ Reset(); \