Rename "suppressible protocols" to "invertible protocols".

We've decided to use the "invertible protocols" terminology throughout
the runtime and compiler, so move over to that terminology
consistently.
This commit is contained in:
Doug Gregor
2024-03-29 10:09:48 -07:00
parent 79b78acdf6
commit b84f8ab080
16 changed files with 330 additions and 332 deletions

View File

@@ -136,9 +136,9 @@ PROTOCOL(AsyncIteratorProtocol)
PROTOCOL(FloatingPoint)
#define SUPPRESSIBLE_PROTOCOL(Name, Bit) \
#define INVERTIBLE_PROTOCOL(Name, Bit) \
INVERTIBLE_PROTOCOL_WITH_NAME(Name, #Name)
#include "swift/ABI/SuppressibleProtocols.def"
#include "swift/ABI/InvertibleProtocols.def"
PROTOCOL_(BitwiseCopyable)