[flang] Correct TypeCode::IsLogical()
authorpeter klausler <pklausler@nvidia.com>
Mon, 12 Apr 2021 17:10:38 +0000 (10:10 -0700)
committerpeter klausler <pklausler@nvidia.com>
Mon, 12 Apr 2021 19:57:22 +0000 (12:57 -0700)
F18 is using the type codes for C's "least" int types to encode
the various kinds of Fortran's LOGICAL intrinsic type; update
the IsLogical() predicate accordingly.  (This member function
isn't yet used anywhere, so this patch is nearly an NFC.)

Differential Revision: https://reviews.llvm.org/D100323

flang/runtime/type-code.h

index 3c5891b..c859ede 100644 (file)
@@ -45,7 +45,7 @@ public:
   }
   constexpr bool IsLogical() const {
     return raw_ == CFI_type_Bool ||
-        (raw_ >= CFI_type_int_fast8_t && raw_ <= CFI_type_int_fast64_t);
+        (raw_ >= CFI_type_int_least8_t && raw_ <= CFI_type_int_least64_t);
   }
   constexpr bool IsDerived() const { return raw_ == CFI_type_struct; }
   constexpr bool IsIntrinsic() const { return IsValid() && !IsDerived(); }