commit | b720ff2f62de5d73dcecaccd08d72b5c4a9ee258 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Thu Jan 13 17:44:36 2011 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Thu Jan 13 17:44:36 2011 +0000 |
tree | ccfb923785976c103b13b8db3462a542effe355b | |
parent | d81c7c1659747d8a0c9a687c4d15bbbf33f87dc4 [diff] [blame] |
When your comments and your code are out-of-sync, the test case is wrong. llvm-svn: 123379
diff --git a/clang/lib/CodeGen/Mangle.cpp b/clang/lib/CodeGen/Mangle.cpp index 0dfa052..b8ae1e7 100644 --- a/clang/lib/CodeGen/Mangle.cpp +++ b/clang/lib/CodeGen/Mangle.cpp
@@ -1477,7 +1477,7 @@ void CXXNameMangler::mangleType(const PackExpansionType *T) { // <type> ::= Dp <type> # pack expansion (C++0x) - Out << "sp"; + Out << "Dp"; mangleType(T->getPattern()); }