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

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/constant-pool-remat-0.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
 
; RUN: llc < %s -march=x86-64 | grep LCPI | count 3
2
 
; RUN: llc < %s -march=x86-64 -stats  -info-output-file - | grep asm-printer | grep 6
3
 
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep LCPI | count 3
4
 
; RUN: llc < %s -march=x86 -mattr=+sse2 -stats  -info-output-file - | grep asm-printer | grep 12
5
 
 
6
 
declare float @qux(float %y)
7
 
 
8
 
define float @array(float %a) nounwind {
9
 
  %n = fmul float %a, 9.0
10
 
  %m = call float @qux(float %n)
11
 
  %o = fmul float %m, 9.0
12
 
  ret float %o
13
 
}