MS ABI: Document the '\xc1' to '\xda' manglings

No functionality change.

llvm-svn: 205223
This commit is contained in:
David Majnemer 2014-03-31 17:09:09 +00:00
parent 4c8f634f23
commit 49e5b123d7
1 changed files with 1 additions and 0 deletions

View File

@ -2419,6 +2419,7 @@ void MicrosoftMangleContextImpl::mangleStringLiteral(const StringLiteral *SL,
Mangler.getStream() << Byte;
} else if ((Byte >= '\xe1' && Byte <= '\xfa') ||
(Byte >= '\xc1' && Byte <= '\xda')) {
// The delta between '\xe1' and '\xc1' is the same as 'a' to 'A'.
Mangler.getStream() << '?' << static_cast<char>('A' + (Byte - '\xc1'));
} else {
switch (Byte) {