[DiscordArchive] is there a way to run the code from that editor?
[DiscordArchive] is there a way to run the code from that editor?
Archived author: Quantam • Posted: 2018-06-05T14:20:40.401000+00:00
Original source
I'm too sleepy to see what's wrong with my reverse function
Archived author: Quantam • Posted: 2018-06-05T14:22:21.251000+00:00
Original source
Oh I get it
Archived author: Quantam • Posted: 2018-06-05T14:22:27.469000+00:00
Original source
It's failing to reproduce -0
Archived author: Quantam • Posted: 2018-06-05T14:22:31.253000+00:00
Original source
Not a bug
Archived author: Quantam • Posted: 2018-06-05T14:24:04.706000+00:00
Original source
https://godbolt.org/g/sxhHA2
[Embed: Compiler Explorer]
Compiler Explorer is an interactive online compiler which shows the assembly output of compiled C, C++, Rust, Go, D, Haskell, Swift & Pascal code.
https://godbolt.org/g/sxhHA2
Archived author: Quantam • Posted: 2018-06-05T14:26:56.962000+00:00
Original source
FYI it's actually a uint16_t, not an int16_t. Can't be an intxx_t unless it uses CPU-native signed numbers
Archived author: Quantam • Posted: 2018-06-05T14:29:33.214000+00:00
Original source
Hmmm... sign-magnitude... SM...
Archived author: Quantam • Posted: 2018-06-05T14:29:37.218000+00:00
Original source
That seems appropriate
Archived author: schlumpf • Posted: 2018-06-05T14:40:38.048000+00:00
Original source
Yes, that's why I use `uint` for mine.