diff --git a/flang/runtime/allocatable.cpp b/flang/runtime/allocatable.cpp index 3e33caca33d1..18dc93cdbc6f 100644 --- a/flang/runtime/allocatable.cpp +++ b/flang/runtime/allocatable.cpp @@ -36,13 +36,13 @@ void RTNAME(AllocatableInitDerived)(Descriptor &descriptor, } void RTNAME(AllocatableAssign)(Descriptor &to, const Descriptor & /*from*/) { - INTERNAL_CHECK(!"AllocatableAssign is not yet implemented"); + INTERNAL_CHECK(false); // AllocatableAssign is not yet implemented } int RTNAME(MoveAlloc)(Descriptor &to, const Descriptor & /*from*/, bool /*hasStat*/, Descriptor * /*errMsg*/, const char * /*sourceFile*/, int /*sourceLine*/) { - INTERNAL_CHECK(!"MoveAlloc is not yet implemented"); + INTERNAL_CHECK(false); // MoveAlloc is not yet implemented return StatOk; }