Move CHECK after entry label.
authorAkira Hatanaka <ahatanaka@mips.com>
Mon, 3 Oct 2011 21:24:30 +0000 (21:24 +0000)
committerAkira Hatanaka <ahatanaka@mips.com>
Mon, 3 Oct 2011 21:24:30 +0000 (21:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141030 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Mips/mips64instrs.ll

index 8c02a2dcbb8d5b44a36922ffa0496a7d86f7bf1d..c9812a27699252e4e4ce0e08a144a7743de8a69f 100644 (file)
@@ -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