diff options
| author | Michael Kruse <llvm-project@meinersbur.de> | 2025-01-03 10:22:51 +0100 |
|---|---|---|
| committer | Michael Kruse <llvm-project@meinersbur.de> | 2025-01-03 10:22:51 +0100 |
| commit | 38500d63e14ce340236840f60d356cdefb56a52c (patch) | |
| tree | 17edbec446ce9b50d2f215a483b83afb293a635d /flang/runtime/numeric.cpp | |
| parent | 1a3d5daaef7a6a63448a497da3eff7fc9e23df26 (diff) | |
| parent | 27f30029741ecf023baece7b3dde1ff9011ffefc (diff) | |
Merge branch 'main' into users/meinersbur/flang_runtime_split-headersusers/meinersbur/flang_runtime_split-headers
Diffstat (limited to 'flang/runtime/numeric.cpp')
| -rw-r--r-- | flang/runtime/numeric.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flang/runtime/numeric.cpp b/flang/runtime/numeric.cpp index 4797ecf58fa7..45fb56348fd4 100644 --- a/flang/runtime/numeric.cpp +++ b/flang/runtime/numeric.cpp @@ -94,7 +94,7 @@ template <typename T> inline RT_API_ATTRS T Scale(T x, std::int64_t p) { return std::ldexp(x, ip); // x*2**p } -// SELECTED_INT_KIND (16.9.169) +// SELECTED_INT_KIND (16.9.169) and SELECTED_UNSIGNED_KIND extension template <typename X, typename M> inline RT_API_ATTRS CppTypeFor<TypeCategory::Integer, 4> SelectedIntKind( X x, M mask) { @@ -781,7 +781,7 @@ CppTypeFor<TypeCategory::Integer, 4> RTDEF(SelectedCharKind)( return -1; } } -// SELECTED_INT_KIND +// SELECTED_INT_KIND and SELECTED_UNSIGNED_KIND extension CppTypeFor<TypeCategory::Integer, 4> RTDEF(SelectedIntKind)( const char *source, int line, void *x, int xKind) { return RTNAME(SelectedIntKindMasked)(source, line, x, xKind, |
