Results 27 comments of Jay Foad

Thanks. There is a similar problem in `cmd/iv/main.go`. I did not know about `cmd/lui`. As a Linux command line user, I think I prefer to run `rlwrap -S " "...

The [usual advice](https://github.com/docker-library/python/issues/13) is to fix your locale or override it, e.g. with one of: ``` LANG=C.UTF-8 # force UTF-8 locale PYTHONIOENCODING=UTF-8 # tell Python to use UTF-8 for io...

Not really a bug; classes and instances are both kinds of namespaces.

In the RIDE explorer ⓘ means Interface.

My feeling is that we probably should not do this in IR because: - It will not be a win on all targets. Float-to-i64 could be significantly more expensive than...

Maybe split this into two patches, one for `computeKnownBits` and one for `isKnownNeverZero`? Then it is easier to see what is being tested where.

Mathematically it would be `X * C1 > C2 --> X > C3 where C3 = C2 / C1` (I'm assuming that C1 is positive for simplicity but it can...

> And this optimization should respect `#pragma STDC FENV_ROUND`, by the way. (The optimization should be disabled for `#pragma STDC FENV_ROUND FE_DYNAMIC`.) Some cases are probably safe regardless of rounding...