From: Michael Meissner Date: Sat, 20 Aug 1994 16:46:44 +0000 (+0000) Subject: Allocate eax before edx. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4a9dd2e3a0bbe4b95a118cebb1c3063a74108f4;p=gcc.git Allocate eax before edx. From-SVN: r7955 --- diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index b2ad6169562..983bfc5803a 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -266,8 +266,8 @@ extern int target_flags; available for storage of persistent values. */ #define REG_ALLOC_ORDER \ -/*dx,cx,ax,bx,si,di,bp,sp,st,st1,st2,st3,st4,st5,st6,st7,arg*/ \ -{ 1, 2, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 } +/*ax,cx,dx,bx,si,di,bp,sp,st,st1,st2,st3,st4,st5,st6,st7,arg*/ \ +{ 0, 2, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 } /* Macro to conditionally modify fixed_regs/call_used_regs. */ #define CONDITIONAL_REGISTER_USAGE \