From mboxrd@z Thu Jan 1 00:00:00 1970 From: Harry Kalogirou Subject: Re: More dev86 changes (0.16.7) [About the optimiser] Date: 03 Aug 2002 13:17:53 +0300 Sender: linux-8086-owner@vger.kernel.org Message-ID: <1028367438.471.5.camel@cool> References: Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Id: Content-Type: text/plain; charset="us-ascii" To: Robert de Bath Cc: Linux-8086 Hi Robert, lately I was studing the assembly code bcc was generating and I noticed that it generates a lot of code like this : mov ax, 6[bp] mov bx, 8[bp] xchg ax, bx Will it be hard to convince the compiler to generate mov ax, 8[bp] mov bx, 6[bp] instead? Harry