diff options
| author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-11-22 11:45:44 +0000 |
|---|---|---|
| committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-11-22 11:45:44 +0000 |
| commit | 15dd46215e2f43b9a768b5c0dadfd1571a7464b4 (patch) | |
| tree | 778ce56ef9476a20269ea6bff1145ccac0e0dfd1 /llvm/test/CodeGen/ARM/bic.ll | |
| parent | 12048d868b51701295c95f23c47c9b3e8b6cf6c8 (diff) | |
| download | bcm5719-llvm-15dd46215e2f43b9a768b5c0dadfd1571a7464b4.tar.gz bcm5719-llvm-15dd46215e2f43b9a768b5c0dadfd1571a7464b4.zip | |
Convert a few tests to FileCheck for PR5307.
llvm-svn: 89584
Diffstat (limited to 'llvm/test/CodeGen/ARM/bic.ll')
| -rw-r--r-- | llvm/test/CodeGen/ARM/bic.ll | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/bic.ll b/llvm/test/CodeGen/ARM/bic.ll index b16dcc6755b..5c6044dad7d 100644 --- a/llvm/test/CodeGen/ARM/bic.ll +++ b/llvm/test/CodeGen/ARM/bic.ll @@ -6,8 +6,12 @@ define i32 @f1(i32 %a, i32 %b) { ret i32 %tmp1 } +; CHECK: bic r0, r0, r1 + define i32 @f2(i32 %a, i32 %b) { %tmp = xor i32 %b, 4294967295 %tmp1 = and i32 %tmp, %a ret i32 %tmp1 } + +; CHECK: bic r0, r0, r1 |

