commit | 43e43f7d8bfc748973feb781fc304f8d23ab88ba | [log] [tgz] |
---|---|---|
author | Akira Hatanaka <ahatanaka@mips.com> | Mon Oct 03 21:23:18 2011 +0000 |
committer | Akira Hatanaka <ahatanaka@mips.com> | Mon Oct 03 21:23:18 2011 +0000 |
tree | 597be7a91b3a8068450c7005d667dc60f6a79f0d | |
parent | 2d57088ff015b01c8c2aa8d7844f96881e0c82ce [diff] |
Add support for 64-bit logical NOR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141029 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/Mips/mips64instrs.ll b/test/CodeGen/Mips/mips64instrs.ll index 16bca0f..8c02a2d 100644 --- a/test/CodeGen/Mips/mips64instrs.ll +++ b/test/CodeGen/Mips/mips64instrs.ll
@@ -133,3 +133,11 @@ ret i64 %tmp1 } +define i64 @f20(i64 %a, i64 %b) nounwind readnone { +entry: +; CHECK: nor + %or = or i64 %b, %a + %neg = xor i64 %or, -1 + ret i64 %neg +} +