ConstantFP API Change

Hi All,

At some point in the next week or two I'm going to remove the ConstantFP::get(type, APFloat) method. Right now, you can immediately fix your code by dropping the first 'type' argument. For example, if you have:

   ConstantFP::get(Ty, APFloat(1.0))

just change it to:

   ConstantFP::get(APFloat(1.0))

Both forms work with SVN head right now so you can migrate as convenient. The former will stop working in a week or two.

-Chris

Hi All,

At some point in the next week or two I'm going to remove the
ConstantFP::get(type, APFloat) method.

I committed this:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20080428/061932.html

-Chris