Re: [PATCH] Add tree-il optimizations for equal? on char and number literals

2020-05-14 Thread Andy Wingo
On Wed 13 May 2020 23:16, Linus Björnstam writes: > On the latest master equal? was not reduced to eq? on chars in the repl > for things like ,opt (define (a b) (equal? b #\b)). This turned out to be that I had broken the REPL command. The optimizer was working fine though. Fixed now :) Cheer

Re: [PATCH] Add tree-il optimizations for equal? on char and number literals

2020-05-14 Thread Linus Björnstam
Works like a charm! -- Linus Björnstam On Thu, 14 May 2020, at 10:38, Andy Wingo wrote: > On Wed 13 May 2020 23:16, Linus Björnstam > writes: > > > On the latest master equal? was not reduced to eq? on chars in the repl > > for things like ,opt (define (a b) (equal? b #\b)). > > This turne