Skip to content

Commit 21bff9c

Browse files
committed
[NFC][flang] Fixed typo in AVOID_NATIVE_UINT128_T macro.
Differential Revision: https://reviews.llvm.org/D149097
1 parent 74f0051 commit 21bff9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/include/flang/Common/uint128.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ template <bool IS_SIGNED = false> class Int128 {
261261
using UnsignedInt128 = Int128<false>;
262262
using SignedInt128 = Int128<true>;
263263

264-
#if !AVOID_NATIVE_UINT128_t && (defined __GNUC__ || defined __clang__) && \
264+
#if !AVOID_NATIVE_UINT128_T && (defined __GNUC__ || defined __clang__) && \
265265
defined __SIZEOF_INT128__
266266
using uint128_t = __uint128_t;
267267
using int128_t = __int128_t;

0 commit comments

Comments
 (0)