target-alpha: fix cmpbge instruction
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 10 Nov 2008 11:10:14 +0000 (11:10 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 10 Nov 2008 11:10:14 +0000 (11:10 +0000)
commit970d622e8ab1de8fdf5762e23e92a2dea9d7d36c
tree64502c6f9190d5cd48b21b653ac700d1c431f555
parente441570f8abd131ec39ca6e81aaaf0d4ade8572f
target-alpha: fix cmpbge instruction

The cmpbge instruction should compare all 8 bytes of one 64-bit value with
another.  However, we were looping with a < 7 condition which was skipping
the top byte.  So if we were doing a compare where the top byte was
important, we could get the wrong result (this notably breaks the strlen()
function with certain sized strings).

(Vince Weaver)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5667 c046a42c-6fe2-441c-8c8c-71466251a162
target-alpha/op_helper.c