[llvm-commits] r55638 - /llvm/trunk/include/llvm/Function.h

Duncan Sands baldrick at free.fr
Tue Sep 30 00:39:38 PDT 2008


> Ignore inliner for a while, and decide what code generator should do  
> for following ?
> 
> define float @foo(float %a, float %b) x86_no_sse {
>         %t = mul float %a, %b
>         ret float %t
> }

It would use the x86 floating point stack, like it does now
if you compile with -mattr=-sse.  This is less efficient than
using sse.

Ciao,

Duncan.



More information about the llvm-commits mailing list