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

Unified Diff: src/codegen-ia32.cc

Issue 18270: Experimental: switch back to using MacroAssembler::Set instead of... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 years, 11 months 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 | src/virtual-frame-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codegen-ia32.cc
===================================================================
--- src/codegen-ia32.cc (revision 1083)
+++ src/codegen-ia32.cc (working copy)
@@ -2909,7 +2909,7 @@
Result temp = allocator_->Allocate();
ASSERT(temp.is_valid());
int bits = reinterpret_cast<int>(*node->handle());
- __ mov(temp.reg(), bits & 0x0000FFFF);
+ __ Set(temp.reg(), Immediate(bits & 0x0000FFFF));
__ xor_(temp.reg(), bits & 0xFFFF0000);
frame_->Push(&temp);
} else {
« no previous file with comments | « no previous file | src/virtual-frame-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698