CC='clang' CXX='clang++' cmake -GNinja ~/pyston
pyston: Compiling src/gc/collector.release.o
make: *** [src/gc/collector.release.o] Error 1
are we allowed to replace temporary values with stack allocations and inlined math for a case like:
return 1.0 / (ij * (ij + 1) / 2 + i + 1)
when we speculate that that all types are ints and the results fit inside an int?