[PATCH] D47291: Proposal to make rtti errors more generic.
Paul Robinson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 25 10:47:34 PDT 2018
probinson added inline comments.
================
Comment at: include/clang/Basic/DiagnosticSemaKinds.td:6729
def err_no_dynamic_cast_with_fno_rtti : Error<
- "cannot use dynamic_cast with -fno-rtti">;
+ "use of dynamic_cast requires enabling RTTI">;
----------------
filcab wrote:
> I'd prefer to have the way to enable RTTI mentioned in the message. Could we have something like `ToolChain::getRTTIMode()` and have a "RTTI was on/of" or "RTTI defaulted to on/off"? That way we'd be able to have a message similar to the current one (mentioning "you passed -fno-rtti") on platforms that default to RTTI=on, and have your updated message (possibly with a mention of "use -frtti") on platforms that default to RTTI=off.
>
> (This is a minor usability comment about this patch, I don't consider it a blocker or anything)
If the options are spelled differently for clang-cl and we had a way to retrieve the appropriate spellings, providing the option to use in the diagnostic does seem like a nice touch.
Repository:
rC Clang
https://reviews.llvm.org/D47291
More information about the cfe-commits
mailing list