~ubuntu-branches/ubuntu/maverick/clamav/maverick-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/smul-with-overflow-3.ll

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran, Stephen Gran, Michael Tautschnig
  • Date: 2010-04-26 21:41:18 UTC
  • mfrom: (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100426214118-i6lo606wnh7ywfj6
Tags: 0.96+dfsg-4
[ Stephen Gran ]
* Fixed typo in clamav-milter's postinst

[ Michael Tautschnig ]
* Fixed typo in clamav-freshclam's postinst (closes: #579271)
* Debconf translation updates
  - Portuguese (closes: #579068)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc < %s -march=x86 | grep {jno} | count 1
 
2
 
 
3
@ok = internal constant [4 x i8] c"%d\0A\00"
 
4
@no = internal constant [4 x i8] c"no\0A\00"
 
5
 
 
6
define i1 @func1(i32 %v1, i32 %v2) nounwind {
 
7
entry:
 
8
  %t = call {i32, i1} @llvm.smul.with.overflow.i32(i32 %v1, i32 %v2)
 
9
  %sum = extractvalue {i32, i1} %t, 0
 
10
  %obit = extractvalue {i32, i1} %t, 1
 
11
  br i1 %obit, label %overflow, label %normal
 
12
 
 
13
overflow:
 
14
  %t2 = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([4 x i8]* @no, i32 0, i32 0) ) nounwind
 
15
  ret i1 false
 
16
 
 
17
normal:
 
18
  %t1 = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([4 x i8]* @ok, i32 0, i32 0), i32 %sum ) nounwind
 
19
  ret i1 true
 
20
}
 
21
 
 
22
declare i32 @printf(i8*, ...) nounwind
 
23
declare {i32, i1} @llvm.smul.with.overflow.i32(i32, i32)