Message-Id: <199604291934.MAA06467@bluesky.com> Comments: Authenticated sender is From: "Kevin Baca" Organization: BlueSky Software To: sime AT fly DOT cc DOT etf DOT hr Date: Mon, 29 Apr 1996 12:36:33 +0000 Subject: Re: QUAKE and DJGPP CC: djgpp AT delorie DOT com > : DJGPP is awesome and I have had no problems with it. It also produces > : slightly faster code than Watcom on average. > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > Maybe... but how do I force DJGPP to use register calling convention? I see no advantage to this because of the limited number of registers on the x86 architecture. Even if you pass parameters in registers the compiler will most likely still produce pushes and pops because there are many x86 instructions that absolutly require register parameters. Therefore I see no net gain. -Kevin