2009/9/30 Richard Henderson <r...@redhat.com>: > On 09/29/2009 09:46 PM, Mohamed Shafi wrote: >> >> bool strict = reload_completed ? true : false; > > What happens if you set "strict = false" here? > That's what ARM does.
That particular case works, and yes arm does it that way but there are other targets that uses (reload_completed || reload_in_progress) like s390. So thats why i had to ask if my definition of strict is proper or not. I am not sure which one to use? Shafi