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

Unified Diff: src/regexp-macro-assembler-ia32.cc

Issue 12432: Oh, it has to work on Intel CPUs too? (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/regexp-macro-assembler-ia32.cc
===================================================================
--- src/regexp-macro-assembler-ia32.cc (revision 833)
+++ src/regexp-macro-assembler-ia32.cc (working copy)
@@ -183,7 +183,7 @@
if (mode_ == ASCII) {
constant_buffer.at<char>(i) = static_cast<char>(str[i]);
} else {
- memcpy(constant_buffer.location<void>(),
+ memcpy(constant_buffer.location(),
str.start(),
str.length() * sizeof(uc16));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698