diff graal/GraalCompiler/src/com/sun/c1x/target/amd64/AMD64LIRGenerator.java @ 2767:cc2b98e2b832

Reduced moveToPhi usages to 1.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 23 May 2011 16:23:28 +0200
parents 1ddcbcd33325
children 27512ea6bbcb
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/target/amd64/AMD64LIRGenerator.java	Mon May 23 15:07:01 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/target/amd64/AMD64LIRGenerator.java	Mon May 23 16:23:28 2011 +0200
@@ -504,7 +504,6 @@
         CiValue left = xin.result();
         CiValue right = yin.result();
         lir.cmp(cond, left, right);
-        moveToPhi();
         if (x.x().kind.isFloat() || x.x().kind.isDouble()) {
             lir.branch(cond, right.kind, getLIRBlock(x.trueSuccessor()), getLIRBlock(x.unorderedSuccessor()));
         } else {