mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Make small fixes and oops ran clang-format on dtoa
This commit is contained in:
parent
b5b60015f5
commit
ac00be1a4e
47 changed files with 4933 additions and 5306 deletions
|
@ -36,8 +36,8 @@ uint64_t rdrand(void) {
|
|||
for (;;) {
|
||||
for (i = 0; i < 10; ++i) {
|
||||
/* CF=1: Destination register valid. Quoth Intel DRNG-SIG 4.1.3 */
|
||||
asm volatile(CFLAG("rdrand\t%1")
|
||||
: CF(cf), "=r"(res)
|
||||
asm volatile(CFLAG_ASM("rdrand\t%1")
|
||||
: CFLAG_CONSTRAINT(cf), "=r"(res)
|
||||
: /* no inputs */
|
||||
: "cc");
|
||||
if (cf) return res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue