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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/private.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
 
; Test to make sure that the 'private' is used correctly.
2
 
;
3
 
; RUN: llc < %s -mtriple=x86_64-pc-linux | grep .Lfoo:
4
 
; RUN: llc < %s -mtriple=x86_64-pc-linux | grep call.*\.Lfoo
5
 
; RUN: llc < %s -mtriple=x86_64-pc-linux | grep .Lbaz:
6
 
; RUN: llc < %s -mtriple=x86_64-pc-linux | grep movl.*\.Lbaz
7
 
 
8
 
declare void @foo()
9
 
 
10
 
define private void @foo() {
11
 
        ret void
12
 
}
13
 
 
14
 
@baz = private global i32 4
15
 
 
16
 
define i32 @bar() {
17
 
        call void @foo()
18
 
        %1 = load i32* @baz, align 4
19
 
        ret i32 %1
20
 
}