[llvm-commits] [llvm] r141030 - /llvm/trunk/test/CodeGen/Mips/mips64instrs.ll
Akira Hatanaka
ahatanaka at mips.com
Mon Oct 3 14:24:30 PDT 2011
Author: ahatanak
Date: Mon Oct 3 16:24:30 2011
New Revision: 141030
URL: http://llvm.org/viewvc/llvm-project?rev=141030&view=rev
Log:
Move CHECK after entry label.
Modified:
llvm/trunk/test/CodeGen/Mips/mips64instrs.ll
Modified: llvm/trunk/test/CodeGen/Mips/mips64instrs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/mips64instrs.ll?rev=141030&r1=141029&r2=141030&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/mips64instrs.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/mips64instrs.ll Mon Oct 3 16:24:30 2011
@@ -118,16 +118,16 @@
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
More information about the llvm-commits
mailing list