[flang-commits] [flang] 101b3fe - [flang] Fix two typos in API names
peter klausler via flang-commits
flang-commits at lists.llvm.org
Wed Aug 11 13:13:35 PDT 2021
Author: peter klausler
Date: 2021-08-11T12:43:37-07:00
New Revision: 101b3fed5eba36b2335d874a488858a6b03685d2
URL: https://github.com/llvm/llvm-project/commit/101b3fed5eba36b2335d874a488858a6b03685d2
DIFF: https://github.com/llvm/llvm-project/commit/101b3fed5eba36b2335d874a488858a6b03685d2.diff
LOG: [flang] Fix two typos in API names
Differential Revision: https://reviews.llvm.org/D107916
Added:
Modified:
flang/runtime/reduction.h
Removed:
################################################################################
diff --git a/flang/runtime/reduction.h b/flang/runtime/reduction.h
index a52a921b61090..4cc0765a345db 100644
--- a/flang/runtime/reduction.h
+++ b/flang/runtime/reduction.h
@@ -244,10 +244,10 @@ std::int16_t RTNAME(MinvalInteger2)(const Descriptor &, const char *source,
int line, int dim = 0, const Descriptor *mask = nullptr);
std::int32_t RTNAME(MinvalInteger4)(const Descriptor &, const char *source,
int line, int dim = 0, const Descriptor *mask = nullptr);
-std::int64_t RTNAME(MivalInteger8)(const Descriptor &, const char *source,
+std::int64_t RTNAME(MinvalInteger8)(const Descriptor &, const char *source,
int line, int dim = 0, const Descriptor *mask = nullptr);
#ifdef __SIZEOF_INT128__
-common::int128_t RTNAME(MivalInteger16)(const Descriptor &, const char *source,
+common::int128_t RTNAME(MinvalInteger16)(const Descriptor &, const char *source,
int line, int dim = 0, const Descriptor *mask = nullptr);
#endif
float RTNAME(MinvalReal2)(const Descriptor &, const char *source, int line,
More information about the flang-commits
mailing list