2

I was wondering whether clang's new amazing custom size (things like 13-bit int, or 70-bit int, etc.) will get added to gcc.

xilpex
  • 3,097
  • 2
  • 14
  • 45
  • Depends it's being considered by the ISO WG14 C Language Committee see: http://blog.llvm.org/2020/04/the-new-clang-extint-feature-provides.html – Richard Critten Apr 24 '20 at 16:03

2 Answers2

2

Well. C23 has finally implemented them as _BigInt

Georg Friedrich
  • 183
  • 2
  • 12
0

No most likely, it won't. That is because clang uses llvm as its compiling backend, and gcc doesn't. The llvm backend is what allows clang to pull off that feat. LLVM allows from 1 to 16,777,215 bit ints.

xilpex
  • 3,097
  • 2
  • 14
  • 45