~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/Analysis/ScalarEvolution/trip-count8.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: opt < %s -analyze -scalar-evolution \
 
2
; RUN:  | grep {Loop %for\\.body: backedge-taken count is (-1 + \[%\]ecx)}
 
3
; PR4599
 
4
 
 
5
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
 
6
 
 
7
define i32 @foo(i32 %ecx) nounwind {
 
8
entry:
 
9
        %cmp2 = icmp eq i32 %ecx, 0             ; <i1> [#uses=1]
 
10
        br i1 %cmp2, label %for.end, label %bb.nph
 
11
 
 
12
for.cond:               ; preds = %for.inc
 
13
        %cmp = icmp ult i32 %inc, %ecx          ; <i1> [#uses=1]
 
14
        br i1 %cmp, label %for.body, label %for.cond.for.end_crit_edge
 
15
 
 
16
for.cond.for.end_crit_edge:             ; preds = %for.cond
 
17
        %phitmp = add i32 %i.01, 2              ; <i32> [#uses=1]
 
18
        br label %for.end
 
19
 
 
20
bb.nph:         ; preds = %entry
 
21
        br label %for.body
 
22
 
 
23
for.body:               ; preds = %bb.nph, %for.cond
 
24
        %i.01 = phi i32 [ %inc, %for.cond ], [ 0, %bb.nph ]             ; <i32> [#uses=3]
 
25
        %call = call i32 @bar(i32 %i.01) nounwind               ; <i32> [#uses=0]
 
26
        br label %for.inc
 
27
 
 
28
for.inc:                ; preds = %for.body
 
29
        %inc = add i32 %i.01, 1         ; <i32> [#uses=2]
 
30
        br label %for.cond
 
31
 
 
32
for.end:                ; preds = %for.cond.for.end_crit_edge, %entry
 
33
        %i.0.lcssa = phi i32 [ %phitmp, %for.cond.for.end_crit_edge ], [ 1, %entry ]            ; <i32> [#uses=1]
 
34
        ret i32 %i.0.lcssa
 
35
}
 
36
 
 
37
declare i32 @bar(i32)