test/CodeGen/X86/constant-pool-remat-0.ll: FileCheck-ize and add explicit -mtriple...
[oota-llvm.git] / test / CodeGen / X86 / constant-pool-remat-0.ll
1 ; RUN: llc < %s -mtriple=x86_64-linux   | FileCheck %s
2 ; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
3 ; CHECK:     LCPI
4 ; CHECK:     LCPI
5 ; CHECK:     LCPI
6 ; CHECK-NOT: LCPI
7
8 ; RUN: llc < %s -mtriple=x86_64-linux -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X64stat
9 ; X64stat: 6 asm-printer
10
11 ; RUN: llc < %s -march=x86 -mattr=+sse2 -o /dev/null -stats -info-output-file - | FileCheck %s -check-prefix=X32stat
12 ; X32stat: 12 asm-printer
13
14 declare float @qux(float %y)
15
16 define float @array(float %a) nounwind {
17   %n = fmul float %a, 9.0
18   %m = call float @qux(float %n)
19   %o = fmul float %m, 9.0
20   ret float %o
21 }