Reviewers: Mads Ager,

Description:
Fix compilation on x64.

[email protected]

Please review this at http://codereview.chromium.org/5873003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge/build/ia32

Affected files:
  M src/x64/full-codegen-x64.cc


Index: src/x64/full-codegen-x64.cc
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
index 5a24a84933bfd862195bd5d9c84f3335b64b1b93..890342095c0572f50a9c6819f6177edf5a818c12 100644
--- a/src/x64/full-codegen-x64.cc
+++ b/src/x64/full-codegen-x64.cc
@@ -199,7 +199,7 @@ void FullCodeGenerator::Generate(CompilationInfo* info) {


 void FullCodeGenerator::ClearAccumulator() {
-  __ xor(rax, rax);
+  __ xor_(rax, rax);
 }




--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to