summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2011-10-03 21:24:30 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2011-10-03 21:24:30 +0000
commitbbb47b320ddeae77833fb0350a04a6de659071c8 (patch)
tree4bece9e0da5a9cb575e9347ee1e2cbe1adc80b3a
parent43e43f7d8bfc748973feb781fc304f8d23ab88ba (diff)
downloadllvm-bbb47b320ddeae77833fb0350a04a6de659071c8.tar.gz
llvm-bbb47b320ddeae77833fb0350a04a6de659071c8.tar.bz2
llvm-bbb47b320ddeae77833fb0350a04a6de659071c8.tar.xz
Move CHECK after entry label.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141030 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/Mips/mips64instrs.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Mips/mips64instrs.ll b/test/CodeGen/Mips/mips64instrs.ll
index 8c02a2dcbb..c9812a2769 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