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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/Generic/2007-02-25-invoke.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
2
 
 
3
 
; PR1224
4
 
 
5
 
declare i32 @test()
6
 
define i32 @test2() {
7
 
        %A = invoke i32 @test() to label %invcont unwind label %blat
8
 
invcont:
9
 
        ret i32 %A
10
 
blat:
11
 
        ret i32 0
12
 
}