[PATCH] D43105: [RISCV] Enable __int128_t and uint128_t through clang flag
Eli Friedman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 16 17:59:46 PST 2018
efriedma added inline comments.
================
Comment at: include/clang/Driver/Options.td:843
+def fforce_enable_int128 : Flag<["-"], "fforce-enable-int128">, Group<f_Group>,
+ Flags<[CC1Option]>, HelpText<"Enable support for int128_t type">;
----------------
We should have an inverse flag -fno-force-enable-int128, like we do for other "-f" flags. (Not sure anyone is actually likely to use it, but better to have it in case someone needs it.)
Repository:
rC Clang
https://reviews.llvm.org/D43105
More information about the cfe-commits
mailing list