From c4a9dd2e3a0bbe4b95a118cebb1c3063a74108f4 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Sat, 20 Aug 1994 16:46:44 +0000 Subject: [PATCH] Allocate eax before edx. From-SVN: r7955 --- gcc/config/i386/i386.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.30.2