diff --git a/test/CodeGen/Mips/mips64instrs.ll b/test/CodeGen/Mips/mips64instrs.ll index 8c02a2dcbb8..c9812a27699 100644 --- a/test/CodeGen/Mips/mips64instrs.ll +++ b/test/CodeGen/Mips/mips64instrs.ll @@ -118,16 +118,16 @@ entry: declare i64 @llvm.ctlz.i64(i64) nounwind readnone -; CHECK: dclz $2, $4 define i64 @f18(i64 %X) nounwind readnone { entry: +; CHECK: dclz $2, $4 %tmp1 = tail call i64 @llvm.ctlz.i64(i64 %X) ret i64 %tmp1 } -; CHECK: dclo $2, $4 define i64 @f19(i64 %X) nounwind readnone { entry: +; CHECK: dclo $2, $4 %neg = xor i64 %X, -1 %tmp1 = tail call i64 @llvm.ctlz.i64(i64 %neg) ret i64 %tmp1