2 ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
3 ; RUN: llc < %s -mtriple=x86_64-linux -regalloc=greedy | FileCheck %s
4 ; RUN: llc < %s -mtriple=i386-linux -mattr=+sse2 | FileCheck %s
10 ; RUN: llc < %s -mtriple=x86_64-linux -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X64stat
11 ; X64stat: 6 asm-printer
13 ; RUN: llc < %s -mtriple=i686-- -mattr=+sse2 -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X32stat
14 ; X32stat: 12 asm-printer
16 declare float @qux(float %y)
18 define float @array(float %a) nounwind {
19 %n = fmul float %a, 9.0
20 %m = call float @qux(float %n)
21 %o = fmul float %m, 9.0