Per Larsen
Per Larsen
Feel free to submit a patch. I'm swamped with work right now.
I think the problem is that GCC doesn't support `__builtin_rotateright{8,16,32,64}`. It isn't mentioned in the GCC docs AFAICT. Check out the godbolt links below - [GCC 9.3.0](https://godbolt.org/z/GGbxbKndf) - [Clang-11.0.1](https://godbolt.org/z/dEz5M65M7) I...
Thanks for letting us know. I'm curious though that bear or intercept build did not work for you. What versions did you try and what distro are you on (it...
@martin-t unexpanded macros might be a problem when translating libraries. On the other hand, translating only used macros is better than what we do today, so yes, this is indeed...
The C11 `_Atomic` quantifier is not supported so that might be it. Of course, we should emit a proper error message. Can you point me to the code you are...
> Why are we using unstable intrinsics anyways? As far as I remember, these correspond to atomic operations on values in the input C code. We'd introduce some pretty horrible...
Re. reorganizing scripts, adding subdirectories sounds like a good idea but I'm against renaming most of the scripts just to make them shorter. If anything `pdg.sh` and other terse names...
I think the focus should be on the new top level directories. (Whatever we do with scripts is a smaller issue overall.) The "old" directories say something about what they...
> Where would I put that? Under `immunant/`? It seems quite small and pretty general, though, as it'd be useful to any project that's using rustc private crates, so I...
Thanks for opening this issue @ijustlovemath. We're happy to review your patch if you open a PR. I recommend looking at the PR that adds support for const macro's as...