Module Name: src Committed By: pooka Date: Tue Sep 7 20:35:51 UTC 2010
Modified Files: src/sys/lib/libkern/arch/i386: random.S Log Message: Rename jump label to something a little more negative. No, I'm not doing it for cosmetic value or out of angst. See, PIC_PROLOGUE on i386 uses the "1" label internally. Now, everything would be fine and dandy for the first 551245 calls to random. After that p+q is negative and the jump is taken. However, it is taken into the middle of PIC_PROLOGUE instead of where upon superficial examination we assumed we are jumping. This causes wrong(tm) things to happen and "ret" triggers a jump into hyperspace. (no, I did not see that coming) To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/lib/libkern/arch/i386/random.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.