Fix broken ipo_ext_iterator constructors.
[oota-llvm.git] / include / llvm / ADT / APFloat.h
index d40727dfcef1143aef4b3c14381e1126a56e81b0..2b466f900c81f4ba1c778893b69bcc28c3a91b5a 100644 (file)
@@ -320,6 +320,7 @@ namespace llvm {
     const fltSemantics &getSemantics() const { return *semantics; }
     bool isZero() const { return category == fcZero; }
     bool isNonZero() const { return category != fcZero; }
+    bool isNormal() const { return category == fcNormal; }
     bool isNaN() const { return category == fcNaN; }
     bool isInfinity() const { return category == fcInfinity; }
     bool isNegative() const { return sign; }