HackerTrans
トップ新着トレンドコメント過去質問紹介求人

pratk

no profile record

投稿

Rust front-end merged in GCC trunk

gcc.gnu.org
158 ポイント·投稿者 pratk·4 年前·130 コメント

コメント

pratk
·4 年前·議論
Well C does allow "copying" an array if it's wrapped inside a struct, which does not make it O(1). gcc generates calls to memcpy in assembly for copying the array.
pratk
·4 年前·議論
One C idiom that I found pretty useful is Xmacros [1]. For instance, it's used extensively in GCC code-base (.def files).

[1] https://www.drdobbs.com/the-new-c-x-macros/184401387
pratk
·4 年前·議論
I work at a company that has been operating remotely since a decade. In our weekly syncs (or 1:1 with manager), there's little to no small talk, and the meeting gets called off if there's not much agenda. For socials, we have a monthly sync, that is voluntary. Both don't get mixed.
pratk
·4 年前·議論
-fwrapv forces the compiler to handle signed overflow with 2's complement. UB essentially means the compiler is free to do anything, and with the option it chooses the wrapping behavior. See https://stackoverflow.com/questions/47232954/what-does-fwrap...
pratk
·4 年前·議論
Also, the UB can be mitigated with -fwrapv (if desired) to handle overflowing integers with 2's complement
pratk
·4 年前·議論
Well, we have defect reports in language specs too: https://www.open-std.org/jtc1/sc22/wg14/www/docs/summary.htm
pratk
·4 年前·議論
Looks interesting, thanks! Just curious, any plans for supporting SIMD, similar to gcc's vector extensions ?