Make the Node member of SUnit private, and add accessors.
[oota-llvm.git] / include / llvm / Constants.h
index 926f131ef5eb193428a2eac6e183a118fb8dc3ca..0706f61d12e05b97cd0e854f52f5b19aed429230 100644 (file)
@@ -262,11 +262,12 @@ public:
   bool isExactlyValue(const APFloat& V) const;
 
   bool isExactlyValue(double V) const {
+    bool ignored;
     // convert is not supported on this type
     if (&Val.getSemantics() == &APFloat::PPCDoubleDouble)
       return false;
     APFloat FV(V);
-    FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven);
+    FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven, &ignored);
     return isExactlyValue(FV);
   }
   /// Methods for support type inquiry through isa, cast, and dyn_cast: