Displaying 1 result from an estimated 1 matches for "d78491".
Did you mean:
d78441
2020 Jul 22
2
[RFC] Requiring explicit address space arguments for PointerType
...sabling
it on a directory-by-directory granularity by setting an #ifdef
So far I've changed all default-zero calls for clang and some parts of
LLVM, but we haven't touched passes/targets that we don't add CHERI
support for [1].
I have uploaded these changes as https://reviews.llvm.org/D78491 which
effectively replaces
`unsigned AddressSpace = 0` with LLVM_DEFAULT_AS_PARAM(AddressSpace).
This macro expands to an argument with a default of zero unless
LLVM_NO_IMPLICIT_ADDRESS_SPACE is defined, in which case the argument
is required.
This allows incrementally removing the default zero fro...