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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/pr3457.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 -mtriple=i386-apple-darwin | not grep fstpt
 
2
; PR3457
 
3
; rdar://6548010
 
4
 
 
5
define void @foo(double* nocapture %P) nounwind {
 
6
entry:
 
7
        %0 = tail call double (...)* @test() nounwind           ; <double> [#uses=2]
 
8
        %1 = tail call double (...)* @test() nounwind           ; <double> [#uses=2]
 
9
        %2 = fmul double %0, %0         ; <double> [#uses=1]
 
10
        %3 = fmul double %1, %1         ; <double> [#uses=1]
 
11
        %4 = fadd double %2, %3         ; <double> [#uses=1]
 
12
        store double %4, double* %P, align 8
 
13
        ret void
 
14
}
 
15
 
 
16
declare double @test(...)