Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
This is great in concept but I think we have macros to deprecate things in compiler.h, please also make sure all in tree uses are removed before landing this. Are there any APInt docs or comments that need to be updated? Are you keeping APSInt in sync as well?
The first version of this patch used LLVM_ATTRIBUTE_DEPRECATED but that was removed recently in favour of the standard [[deprecated]]: D94219, 903c30f4d1f3bc0d1aae9ca83af17c0062d02b40
please also make sure all in tree uses are removed before landing this.
Should be done in D125557.
Are there any APInt docs or comments that need to be updated?
I don't think so, at least I couldn't find any other mentions of the truncOrSelf etc names in the whole monorepo.
Are you keeping APSInt in sync as well?
APSInt never had these methods, so I don't think there's anything to do there.