diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-03-30 16:38:02 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-03-30 16:38:02 +0000 |
commit | 981c306e4af81d6c7800d2eda172d22c4fc85046 (patch) | |
tree | f661455d48712ec4edecbe24558a44a11c88cf6e | |
parent | 8265decf466dd980a7efc33c96eb1a6908b87f23 (diff) | |
download | bcm5719-llvm-981c306e4af81d6c7800d2eda172d22c4fc85046.tar.gz bcm5719-llvm-981c306e4af81d6c7800d2eda172d22c4fc85046.zip |
MS ABI: Correct typo in mangleStringLiteral
No functionality change.
llvm-svn: 205156
-rw-r--r-- | clang/lib/AST/MicrosoftMangle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/MicrosoftMangle.cpp b/clang/lib/AST/MicrosoftMangle.cpp index 01f9ffc5be5..0518f0544ea 100644 --- a/clang/lib/AST/MicrosoftMangle.cpp +++ b/clang/lib/AST/MicrosoftMangle.cpp @@ -2403,7 +2403,7 @@ void MicrosoftMangleContextImpl::mangleStringLiteral(const StringLiteral *SL, // scheme. Mangler.mangleNumber(CRC); - // <encoded-crc>: The mangled name also contains the first 32 _characters_ + // <encoded-string>: The mangled name also contains the first 32 _characters_ // (including null-terminator bytes) of the StringLiteral. // Each character is encoded by splitting them into bytes and then encoding // the constituent bytes. |