From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <673a1e360037c45cf535458c800e50a5@quintile.net> From: "Steve Simon" Date: Tue, 15 Oct 2013 20:45:02 +0100 To: 9fans@9fans.net MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] reg DI left allocated Topicbox-Message-UUID: 8633fb96-ead8-11e9-9d60-3106f5b1d025 Hi, Compiling open source software with 8c I see: "reg DI left allocated" I haven't unpicked the code from all its #defines to see what is actually causing this, and I assume the answer is just to simplify the code but done anyone have an explanation as to what might have happened? Thanks, -Steve From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Tue, 15 Oct 2013 15:56:50 -0400 To: 9fans@9fans.net Message-ID: <3340b1e0b69132cd77f236fc36785c7f@coraid.com> In-Reply-To: <673a1e360037c45cf535458c800e50a5@quintile.net> References: <673a1e360037c45cf535458c800e50a5@quintile.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] reg DI left allocated Topicbox-Message-UUID: 86398584-ead8-11e9-9d60-3106f5b1d025 On Tue Oct 15 15:46:57 EDT 2013, steve@quintile.net wrote: > Hi, > > Compiling open source software with 8c I see: > > "reg DI left allocated" > > I haven't unpicked the code from all its #defines to see > what is actually causing this, and I assume the answer is just > to simplify the code but done anyone have an explanation as > to what might have happened? registers need to be dead after each compilation unit. (call to yyparse()). in this case DI was left allocated. - erik From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: <673a1e360037c45cf535458c800e50a5@quintile.net> References: <673a1e360037c45cf535458c800e50a5@quintile.net> Date: Tue, 15 Oct 2013 22:22:35 +0100 Message-ID: From: Charles Forsyth To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: multipart/alternative; boundary=001a11c33904f58fc804e8ce2e60 Subject: Re: [9fans] reg DI left allocated Topicbox-Message-UUID: 865be0f2-ead8-11e9-9d60-3106f5b1d025 --001a11c33904f58fc804e8ce2e60 Content-Type: text/plain; charset=UTF-8 On 15 October 2013 20:45, Steve Simon wrote: > I assume the answer is just > to simplify the code > Yes, to get it through, but it shouldn't happen. If you can produce a simplified test case that will be helpful. It might involve 64-bit ints or structure assignment. --001a11c33904f58fc804e8ce2e60 Content-Type: text/html; charset=UTF-8

On 15 October 2013 20:45, Steve Simon <steve@quintile.net> wrote:
I assume the answer is just
to simplify the code

Yes, to get it through, but it shouldn't happen. If you can produce a simplified test case that will be helpful.
It might involve 64-bit ints or structure assignment.
--001a11c33904f58fc804e8ce2e60--