Module Name: src Committed By: rin Date: Sun Mar 8 06:30:06 UTC 2020
Modified Files: src/lib/libc/compiler_rt: Makefile.inc Log Message: Fix broken printf(3) %d output for numbers more than two digits, e.g., printf("%d\n", 42) ---> "::" instead of "42" Our __{,u}modsi3 codes assume that __udivsi3 returns remainder to %d1 (volatile register). __udivsi3 in libgcc does not, and therefore mixing them up results in mess. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/lib/libc/compiler_rt/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.