[flang-commits] [flang] 21bff9c - [NFC][flang] Fixed typo in AVOID_NATIVE_UINT128_T macro.
Slava Zakharin via flang-commits
flang-commits at lists.llvm.org
Mon Apr 24 13:20:20 PDT 2023
Author: Slava Zakharin
Date: 2023-04-24T13:20:00-07:00
New Revision: 21bff9ca42e4735a52aa1e981b1ccd0d3b274b34
URL: https://github.com/llvm/llvm-project/commit/21bff9ca42e4735a52aa1e981b1ccd0d3b274b34
DIFF: https://github.com/llvm/llvm-project/commit/21bff9ca42e4735a52aa1e981b1ccd0d3b274b34.diff
LOG: [NFC][flang] Fixed typo in AVOID_NATIVE_UINT128_T macro.
Differential Revision: https://reviews.llvm.org/D149097
Added:
Modified:
flang/include/flang/Common/uint128.h
Removed:
################################################################################
diff --git a/flang/include/flang/Common/uint128.h b/flang/include/flang/Common/uint128.h
index b12e1729341fe..bfd2eef01f6f0 100644
--- a/flang/include/flang/Common/uint128.h
+++ b/flang/include/flang/Common/uint128.h
@@ -261,7 +261,7 @@ template <bool IS_SIGNED = false> class Int128 {
using UnsignedInt128 = Int128<false>;
using SignedInt128 = Int128<true>;
-#if !AVOID_NATIVE_UINT128_t && (defined __GNUC__ || defined __clang__) && \
+#if !AVOID_NATIVE_UINT128_T && (defined __GNUC__ || defined __clang__) && \
defined __SIZEOF_INT128__
using uint128_t = __uint128_t;
using int128_t = __int128_t;
More information about the flang-commits
mailing list