[flang-commits] [flang] 7ba393e - [flang] Dodge gcc 8.2.0 build problem (NFC)
peter klausler via flang-commits
flang-commits at lists.llvm.org
Tue Nov 3 16:31:36 PST 2020
Author: peter klausler
Date: 2020-11-03T16:31:15-08:00
New Revision: 7ba393efe5fe861fe2905bb8c09801897fecc128
URL: https://github.com/llvm/llvm-project/commit/7ba393efe5fe861fe2905bb8c09801897fecc128
DIFF: https://github.com/llvm/llvm-project/commit/7ba393efe5fe861fe2905bb8c09801897fecc128.diff
LOG: [flang] Dodge gcc 8.2.0 build problem (NFC)
Add explicit member initializers to the declarations of
some constexpr values added in a recent patch to avoid an
apparent problem with gcc 8.2.0 with default initializers.
Differential revision: https://reviews.llvm.org/D90696
Added:
Modified:
flang/lib/Evaluate/intrinsics.cpp
Removed:
################################################################################
diff --git a/flang/lib/Evaluate/intrinsics.cpp b/flang/lib/Evaluate/intrinsics.cpp
index 8154b7d5bbcb..60e8eee2e243 100644
--- a/flang/lib/Evaluate/intrinsics.cpp
+++ b/flang/lib/Evaluate/intrinsics.cpp
@@ -207,26 +207,28 @@ struct IntrinsicDummyArgument {
// KIND(0), KIND(0.0), KIND(''), &c. value for the function result.
static constexpr IntrinsicDummyArgument DefaultingKIND{"kind",
{IntType, KindCode::kindArg}, Rank::scalar,
- Optionality::defaultsToDefaultForResult};
+ Optionality::defaultsToDefaultForResult, common::Intent::In};
// MatchingDefaultKIND is a KIND= argument whose default value is the
// kind of any "Same" function argument (viz., the one whose kind pattern is
// "same").
static constexpr IntrinsicDummyArgument MatchingDefaultKIND{"kind",
- {IntType, KindCode::kindArg}, Rank::scalar,
- Optionality::defaultsToSameKind};
+ {IntType, KindCode::kindArg}, Rank::scalar, Optionality::defaultsToSameKind,
+ common::Intent::In};
// SizeDefaultKind is a KIND= argument whose default value should be
// the kind of INTEGER used for address calculations, and can be
// set so with a compiler flag; but the standard mandates the
// kind of default INTEGER.
static constexpr IntrinsicDummyArgument SizeDefaultKIND{"kind",
- {IntType, KindCode::kindArg}, Rank::scalar,
- Optionality::defaultsToSizeKind};
-static constexpr IntrinsicDummyArgument RequiredDIM{
- "dim", {IntType, KindCode::dimArg}, Rank::scalar, Optionality::required};
-static constexpr IntrinsicDummyArgument OptionalDIM{
- "dim", {IntType, KindCode::dimArg}, Rank::scalar, Optionality::optional};
-static constexpr IntrinsicDummyArgument OptionalMASK{
- "mask", AnyLogical, Rank::conformable, Optionality::optional};
+ {IntType, KindCode::kindArg}, Rank::scalar, Optionality::defaultsToSizeKind,
+ common::Intent::In};
+static constexpr IntrinsicDummyArgument RequiredDIM{"dim",
+ {IntType, KindCode::dimArg}, Rank::scalar, Optionality::required,
+ common::Intent::In};
+static constexpr IntrinsicDummyArgument OptionalDIM{"dim",
+ {IntType, KindCode::dimArg}, Rank::scalar, Optionality::optional,
+ common::Intent::In};
+static constexpr IntrinsicDummyArgument OptionalMASK{"mask", AnyLogical,
+ Rank::conformable, Optionality::optional, common::Intent::In};
struct IntrinsicInterface {
static constexpr int maxArguments{7}; // if not a MAX/MIN(...)
More information about the flang-commits
mailing list