ConstantFP::get should be static.
authorChris Lattner <sabre@nondot.org>
Wed, 9 Apr 2008 17:16:28 +0000 (17:16 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 9 Apr 2008 17:16:28 +0000 (17:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49434 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Constants.h

index c2a736eeb87c9c4b0de1e5217aeb5de9a0c6c7ff..d6529c7d5ffe1119ad7b1427fb018b52bd7d3148 100644 (file)
@@ -240,7 +240,7 @@ public:
   /// get() - This returns a constant fp for the specified value in the
   /// specified type.  This should only be used for simple constant values like
   /// 2.0/1.0 etc, that are known-valid both as double and as the target format.
-  ConstantFP *get(const Type *Ty, double V);
+  static ConstantFP *get(const Type *Ty, double V);
 
   /// isValueValidForType - return true if Ty is big enough to represent V.
   static bool isValueValidForType(const Type *Ty, const APFloat& V);