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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/bigstructret.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 -o %t
 
2
; RUN: grep "movl       .24601, 12(%ecx)" %t
 
3
; RUN: grep "movl       .48, 8(%ecx)" %t
 
4
; RUN: grep "movl       .24, 4(%ecx)" %t
 
5
; RUN: grep "movl       .12, (%ecx)" %t
 
6
 
 
7
%0 = type { i32, i32, i32, i32 }
 
8
 
 
9
define internal fastcc %0 @ReturnBigStruct() nounwind readnone {
 
10
entry:
 
11
  %0 = insertvalue %0 zeroinitializer, i32 12, 0
 
12
  %1 = insertvalue %0 %0, i32 24, 1
 
13
  %2 = insertvalue %0 %1, i32 48, 2
 
14
  %3 = insertvalue %0 %2, i32 24601, 3
 
15
  ret %0 %3
 
16
}
 
17