clangs 自定义 int 大小功能是否会添加到 gcc 中?

Will clangs custom int size feature ever get added to gcc?

我想知道 clang 的新惊人自定义大小(如 13 位 int 或 70 位 int 等)是否会添加到 gcc。

不会,很可能不会。这是因为 clang 使用 llvm 作为其编译后端,而 gcc 没有。 llvm 后端允许 clang 实现这一壮举。 LLVM 允许从 116,777,215 位整数。