~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/Analysis/ScalarEvolution/trip-count10.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 | FileCheck %s
 
2
 
 
3
; Trip counts with trivial exit conditions.
 
4
 
 
5
; CHECK: Determining loop execution counts for: @a
 
6
; CHECK: Loop %loop: Unpredictable backedge-taken count. 
 
7
; CHECK: Loop %loop: Unpredictable max backedge-taken count.
 
8
 
 
9
; CHECK: Determining loop execution counts for: @b
 
10
; CHECK: Loop %loop: backedge-taken count is false
 
11
; CHECK: Loop %loop: max backedge-taken count is false
 
12
 
 
13
; CHECK: Determining loop execution counts for: @c
 
14
; CHECK: Loop %loop: backedge-taken count is false
 
15
; CHECK: Loop %loop: max backedge-taken count is false
 
16
 
 
17
; CHECK: Determining loop execution counts for: @d
 
18
; CHECK: Loop %loop: Unpredictable backedge-taken count. 
 
19
; CHECK: Loop %loop: Unpredictable max backedge-taken count. 
 
20
 
 
21
define void @a(i64 %n) nounwind {
 
22
entry:
 
23
  %t0 = icmp sgt i64 %n, 0
 
24
  br i1 %t0, label %loop, label %return
 
25
 
 
26
loop:
 
27
  %i = phi i64 [ %i.next, %loop ], [ 0, %entry ]
 
28
  %i.next = add nsw i64 %i, 1
 
29
  %exitcond = icmp eq i64 %i.next, %n
 
30
  br i1 false, label %return, label %loop
 
31
 
 
32
return:
 
33
  ret void
 
34
}
 
35
define void @b(i64 %n) nounwind {
 
36
entry:
 
37
  %t0 = icmp sgt i64 %n, 0
 
38
  br i1 %t0, label %loop, label %return
 
39
 
 
40
loop:
 
41
  %i = phi i64 [ %i.next, %loop ], [ 0, %entry ]
 
42
  %i.next = add nsw i64 %i, 1
 
43
  %exitcond = icmp eq i64 %i.next, %n
 
44
  br i1 true, label %return, label %loop
 
45
 
 
46
return:
 
47
  ret void
 
48
}
 
49
define void @c(i64 %n) nounwind {
 
50
entry:
 
51
  %t0 = icmp sgt i64 %n, 0
 
52
  br i1 %t0, label %loop, label %return
 
53
 
 
54
loop:
 
55
  %i = phi i64 [ %i.next, %loop ], [ 0, %entry ]
 
56
  %i.next = add nsw i64 %i, 1
 
57
  %exitcond = icmp eq i64 %i.next, %n
 
58
  br i1 false, label %loop, label %return
 
59
 
 
60
return:
 
61
  ret void
 
62
}
 
63
define void @d(i64 %n) nounwind {
 
64
entry:
 
65
  %t0 = icmp sgt i64 %n, 0
 
66
  br i1 %t0, label %loop, label %return
 
67
 
 
68
loop:
 
69
  %i = phi i64 [ %i.next, %loop ], [ 0, %entry ]
 
70
  %i.next = add nsw i64 %i, 1
 
71
  %exitcond = icmp eq i64 %i.next, %n
 
72
  br i1 true, label %loop, label %return
 
73
 
 
74
return:
 
75
  ret void
 
76
}