diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-12-15 00:52:11 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-12-15 00:52:11 +0000 |
commit | d1521ef40ce3e1241c8faa0dc4253e05ea45bc62 (patch) | |
tree | e249661709f54b7384c1d33b825948c57b0585fd /llvm/test/CodeGen | |
parent | 1542d735d99caf54a21b6094bd74e1c0c0c08613 (diff) | |
download | bcm5719-llvm-d1521ef40ce3e1241c8faa0dc4253e05ea45bc62.tar.gz bcm5719-llvm-d1521ef40ce3e1241c8faa0dc4253e05ea45bc62.zip |
Fold (zext (and x, cst)) -> (and (zext x), cst).
llvm-svn: 91380
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/CellSPU/and_ops.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/CellSPU/and_ops.ll b/llvm/test/CodeGen/CellSPU/and_ops.ll index 139e97b967a..716de2ee83c 100644 --- a/llvm/test/CodeGen/CellSPU/and_ops.ll +++ b/llvm/test/CodeGen/CellSPU/and_ops.ll @@ -1,9 +1,9 @@ ; RUN: llc < %s -march=cellspu > %t1.s -; RUN: grep and %t1.s | count 234 +; RUN: grep and %t1.s | count 230 ; RUN: grep andc %t1.s | count 85 -; RUN: grep andi %t1.s | count 37 -; RUN: grep andhi %t1.s | count 30 -; RUN: grep andbi %t1.s | count 4 +; RUN: grep andi %t1.s | count 39 +; RUN: grep andhi %t1.s | count 28 +; RUN: grep andbi %t1.s | count 2 target datalayout = "E-p:32:32:128-f64:64:128-f32:32:128-i64:32:128-i32:32:128-i16:16:128-i8:8:128-i1:8:128-a0:0:128-v128:128:128-s0:128:128" target triple = "spu" |