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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/constant-pool-sharing.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-64 | FileCheck %s
 
2
 
 
3
; llc should share constant pool entries between this integer vector
 
4
; and this floating-point vector since they have the same encoding.
 
5
 
 
6
; CHECK:  LCPI1_0(%rip), %xmm0
 
7
; CHECK:  movaps        %xmm0, (%rdi)
 
8
; CHECK:  movaps        %xmm0, (%rsi)
 
9
 
 
10
define void @foo(<4 x i32>* %p, <4 x float>* %q, i1 %t) nounwind {
 
11
entry:
 
12
  br label %loop
 
13
loop:
 
14
  store <4 x i32><i32 1073741824, i32 1073741824, i32 1073741824, i32 1073741824>, <4 x i32>* %p
 
15
  store <4 x float><float 2.0, float 2.0, float 2.0, float 2.0>, <4 x float>* %q
 
16
  br i1 %t, label %loop, label %ret
 
17
ret:
 
18
  ret void
 
19
}