~ubuntu-branches/ubuntu/maverick/clamav/maverick-updates

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/PowerPC/2006-10-17-brcc-miscompile.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (97.1.1 maverick-proposed)
  • Revision ID: james.westby@ubuntu.com-20101217123020-o02fhyzykv5z98ri
Tags: 0.96.5+dfsg-1ubuntu1.10.10.1
* Microversion update for Maverick (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 | grep xor 
2
 
 
3
 
target datalayout = "E-p:32:32"
4
 
target triple = "powerpc-apple-darwin8.7.0"
5
 
 
6
 
define void @foo(i32 %X) {
7
 
entry:
8
 
        %tmp1 = and i32 %X, 3           ; <i32> [#uses=1]
9
 
        %tmp2 = xor i32 %tmp1, 1                ; <i32> [#uses=1]
10
 
        %tmp = icmp eq i32 %tmp2, 0             ; <i1> [#uses=1]
11
 
        br i1 %tmp, label %UnifiedReturnBlock, label %cond_true
12
 
cond_true:              ; preds = %entry
13
 
        tail call i32 (...)* @bar( )            ; <i32>:0 [#uses=0]
14
 
        ret void
15
 
UnifiedReturnBlock:             ; preds = %entry
16
 
        ret void
17
 
}
18
 
 
19
 
declare i32 @bar(...)
20