Skip to content

Commit 52e2175

Browse files
committed
Fix extra tokens inside intrin0.h preprocessor directive
1 parent 915df1a commit 52e2175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Headers/intrin0.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ unsigned char _InterlockedCompareExchange128_rel(__int64 volatile *_Destination,
4444
__int64 *_ComparandResult);
4545
#endif
4646

47-
#ifdef __x86_64__ && !defined(__arm64ec__)
47+
#if defined(__x86_64__) && !defined(__arm64ec__)
4848
unsigned __int64 _umul128(unsigned __int64, unsigned __int64,
4949
unsigned __int64 *);
5050
unsigned __int64 __shiftleft128(unsigned __int64 _LowPart,

0 commit comments

Comments
 (0)