Connor Horman
Connor Horman
qc is a decent library. It also happens to have optimizations that are specific to floating point numbers. And yeah, most bitfields would be stupid w/o bitwise operations in scoreboards...
Using llvm would be good, you could also add support for your intrinsics in clang++. As I pointed out in the other open issue, `__scoreboard_objective` should be added to allow...
Also as much as I hate to be a pendant, use of `sync` as a reserved word on its own should not be done. If you want it to be...
I still persist that you need to make `sync` into either `__sync`, `__sync__`, or `_Sync`. Otherwise, your steeling an identifier which normal C code might want to make use of
I would like to request an extensions system be added at some point. Basically, at the directory of the compiler, you would have a folder called ./extensions. Inside is a...
The main thing I was asking for was the ability to enable/disable extensions. Also the extensions are mostly intended to apply to the assembly, forexample, replacing the expensive CALL and...
I have a question. I assume that compiling with `--enable-sync` affects the ABI, so functions compiled with it cannot call functions compiled without it, and functions compiled without it cannot...
This works for any signed type, where its UB to overflow, but not unsigned types which are defined to wrap. Directly storing values would necessarily truncate anyways. On Sun, Apr...
A possible alternative would be to define CHAR_BIT as 32, in which case, everything up to int is the same size. On Sun, Apr 19, 2020 at 22:39 connor horman...
On Mon, Apr 20, 2020 at 12:27 Tin Švagelj wrote: > This works for any signed type, where its UB to overflow, but not unsigned > types which are defined...