]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg-i386: Allocate call-saved registers first.
authorRichard Henderson <rth@twiddle.net>
Tue, 13 Apr 2010 22:23:53 +0000 (15:23 -0700)
committerAurelien Jarno <aurelien@aurel32.net>
Wed, 19 May 2010 06:46:10 +0000 (08:46 +0200)
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/i386/tcg-target.c

index e684b33f55db482b4b5d8492bd25b519711a259e..352e42724187b687531d8e05a47ec1316f3902c4 100644 (file)
@@ -36,13 +36,13 @@ static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
 #endif
 
 static const int tcg_target_reg_alloc_order[] = {
-    TCG_REG_EAX,
-    TCG_REG_EDX,
-    TCG_REG_ECX,
     TCG_REG_EBX,
     TCG_REG_ESI,
     TCG_REG_EDI,
     TCG_REG_EBP,
+    TCG_REG_ECX,
+    TCG_REG_EDX,
+    TCG_REG_EAX,
 };
 
 static const int tcg_target_call_iarg_regs[3] = { TCG_REG_EAX, TCG_REG_EDX, TCG_REG_ECX };