Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
deps: fix v8 build error
Pull in build error fix from http://code.google.com/p/v8/source/detail?r=9505
Missed in 5d69bbf.
  • Loading branch information
Dane Springmeyer authored and bnoordhuis committed Apr 18, 2012
1 parent 5d69bbf commit e5b787e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/v8/src/regexp-macro-assembler-tracer.cc
Expand Up @@ -38,7 +38,7 @@ RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer(
assembler_(assembler) {
unsigned int type = assembler->Implementation();
ASSERT(type < 5);
const char* impl_names[4] = {"IA32", "ARM", "MIPS", "X64", "Bytecode"};
const char* impl_names[] = {"IA32", "ARM", "MIPS", "X64", "Bytecode"};
PrintF("RegExpMacroAssembler%s();\n", impl_names[type]);
}

Expand Down

0 comments on commit e5b787e

Please sign in to comment.