Re: [pypy-dev] Trouble translating llvm

2012-10-27 Thread Armin Rigo
Hi David, On Fri, Oct 26, 2012 at 7:44 PM, David Arthur wrote: > Running "python translate.py -Ojit --jit-backend=llvm" with pypy 1.9 Oups, my fault for leaving the option "--jit-backend=llvm" around when the llvm jit backend was removed long ago. It never worked. (Removed the option in f0d036

Re: [pypy-dev] unable to translate due to isinstance call

2012-10-27 Thread Armin Rigo
Hi Wim, On Fri, Oct 26, 2012 at 8:04 PM, wrote: > -> assert s_value.contains(self.bindings[arg]) > > where s_value = SomeBool(knowntypedata={}) and self.bindings[arg] is > SomeBool(const=True, knowntypedata={}). Are you sure about that? Isn't it the opposite: s_value has the 'const' but self

Re: [pypy-dev] unable to translate due to isinstance call

2012-10-27 Thread Armin Rigo
Re-hi, On Sat, Oct 27, 2012 at 10:30 AM, Armin Rigo wrote: > Hi Wim, > > On Fri, Oct 26, 2012 at 8:04 PM, wrote: >> -> assert s_value.contains(self.bindings[arg]) >> >> where s_value = SomeBool(knowntypedata={}) and self.bindings[arg] is >> SomeBool(const=True, knowntypedata={}). > > Are you