1 ; RUN: llc < %s -march=x86-64 | FileCheck %s --check-prefix=CHECK-64
2 ; RUN: llc < %s -march=x86-64 -o /dev/null -stats -info-output-file - | grep asm-printer | grep 12
3 ; RUN: llc < %s -march=x86 | FileCheck %s --check-prefix=CHECK-32
5 declare void @bar(double %x)
6 declare void @barf(float %x)
8 define double @foo() nounwind {
10 call void @bar(double 0.0)
26 define float @foof() nounwind {
27 call void @barf(float 0.0)