~ubuntu-branches/ubuntu/maverick/clamav/maverick-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/Integer/prototype_bt.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (0.35.17 sid)
  • Revision ID: james.westby@ubuntu.com-20101217123020-dbtsp3upnaxsgg89
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: llvm-as %s -o - | llvm-dis > %t1.ll
2
 
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3
 
; RUN: diff %t1.ll %t2.ll
4
 
 
5
 
 
6
 
declare i31 @"bar"(i31 %in) 
7
 
 
8
 
define i31 @"foo"(i31 %blah)
9
 
begin
10
 
  %xx = call i31 @bar(i31 %blah)
11
 
  ret i31 %xx
12
 
end
13