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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/Generic/multiple-return-values-cross-block-with-invoke.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
 
2
 
 
3
declare { i64, double } @wild()
 
4
 
 
5
define void @foo(i64* %p, double* %q) nounwind {
 
6
        %t = invoke { i64, double } @wild() to label %normal unwind label %handler
 
7
 
 
8
normal:
 
9
        %mrv_gr = getresult { i64, double } %t, 0
 
10
        store i64 %mrv_gr, i64* %p
 
11
        %mrv_gr12681 = getresult { i64, double } %t, 1   
 
12
        store double %mrv_gr12681, double* %q
 
13
        ret void
 
14
  
 
15
handler:
 
16
        ret void
 
17
}
 
18