Skip to content

Commit c3f67b3

Browse files
committed
[clang][Interp] Limit MaxBitInt to 128 bits
Looks like larger bitints aren't supported everywhere.
1 parent 43e9eae commit c3f67b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/AST/Interp/intap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %clang_cc1 -std=c++20 -fms-extensions -verify=ref %s
55

66

7-
using MaxBitInt = _BitInt(8388608);
7+
using MaxBitInt = _BitInt(128);
88

99
constexpr _BitInt(2) A = 0;
1010
constexpr _BitInt(2) B = A + 1;

0 commit comments

Comments
 (0)