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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/PowerPC/2006-10-11-combiner-aa-regression.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=ppc32 -combiner-alias-analysis | grep f5
 
2
 
 
3
target datalayout = "E-p:32:32"
 
4
target triple = "powerpc-apple-darwin8.2.0"
 
5
        %struct.Point = type { double, double, double }
 
6
 
 
7
define void @offset(%struct.Point* %pt, double %x, double %y, double %z) {
 
8
entry:
 
9
        %tmp = getelementptr %struct.Point* %pt, i32 0, i32 0           ; <double*> [#uses=2]
 
10
        %tmp.upgrd.1 = load double* %tmp                ; <double> [#uses=1]
 
11
        %tmp2 = fadd double %tmp.upgrd.1, %x             ; <double> [#uses=1]
 
12
        store double %tmp2, double* %tmp
 
13
        %tmp6 = getelementptr %struct.Point* %pt, i32 0, i32 1          ; <double*> [#uses=2]
 
14
        %tmp7 = load double* %tmp6              ; <double> [#uses=1]
 
15
        %tmp9 = fadd double %tmp7, %y            ; <double> [#uses=1]
 
16
        store double %tmp9, double* %tmp6
 
17
        %tmp13 = getelementptr %struct.Point* %pt, i32 0, i32 2         ; <double*> [#uses=2]
 
18
        %tmp14 = load double* %tmp13            ; <double> [#uses=1]
 
19
        %tmp16 = fadd double %tmp14, %z          ; <double> [#uses=1]
 
20
        store double %tmp16, double* %tmp13
 
21
        ret void
 
22
}
 
23