~ubuntu-branches/ubuntu/lucid/clamav/lucid-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/PowerPC/setcc_no_zext.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (0.35.17 sid)
  • Revision ID: james.westby@ubuntu.com-20101217123020-nnk3656an8i339gp
Tags: 0.96.5+dfsg-1ubuntu1.10.04.1
* Microversion update for Lucid (LP: #691414)
  - Improved database login times
  - Expanded use of new bytecode signatures
  - Other bugfixes/improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; RUN: llc < %s -march=ppc32 | not grep rlwinm
2
 
 
3
 
define i32 @setcc_one_or_zero(i32* %a) {
4
 
entry:
5
 
        %tmp.1 = icmp ne i32* %a, null          ; <i1> [#uses=1]
6
 
        %inc.1 = zext i1 %tmp.1 to i32          ; <i32> [#uses=1]
7
 
        ret i32 %inc.1
8
 
}
9