MIPS Compare and Branch
beq rs, rt, offset if R[rs] == R[rt] then PC-relative branch
Compare to zero and Branch
blez rs, offset if R[rs] <= 0 then PC-relative branch
bltzal rs, offset if R[rs] < 0 then branch and link (into R 31)
Remaining set of compare and branch take two instructions
Almost all comparisons are against zero!