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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/live-out-reg-info.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=x86-64 | grep testb
2
 
 
3
 
; Make sure dagcombine doesn't eliminate the comparison due
4
 
; to an off-by-one bug with ComputeMaskedBits information.
5
 
 
6
 
declare void @qux()
7
 
 
8
 
define void @foo(i32 %a) {
9
 
  %t0 = lshr i32 %a, 23
10
 
  br label %next
11
 
next:
12
 
  %t1 = and i32 %t0, 256
13
 
  %t2 = icmp eq i32 %t1, 0
14
 
  br i1 %t2, label %true, label %false
15
 
true:
16
 
  call void @qux()
17
 
  ret void
18
 
false:
19
 
  ret void
20
 
}