diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-13 17:44:36 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-13 17:44:36 +0000 |
commit | 255c269f35928a8194fb591656c67ec4ebd846eb (patch) | |
tree | 17d0f3c0423ea8c3c18eaecb930bc4470acfdb69 /lib/CodeGen/Mangle.cpp | |
parent | 4fc4866945de9b0f1f77a17557060f0ff959b0b1 (diff) |
When your comments and your code are out-of-sync, the test case is wrong.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r-- | lib/CodeGen/Mangle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index 0dfa0520af..b8ae1e7e41 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -1477,7 +1477,7 @@ void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) { void CXXNameMangler::mangleType(const PackExpansionType *T) { // <type> ::= Dp <type> # pack expansion (C++0x) - Out << "sp"; + Out << "Dp"; mangleType(T->getPattern()); } |