From: Alp Toker Date: Thu, 5 Jun 2014 22:11:20 +0000 (+0000) Subject: Remove old proposal notices X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e2c32154dcb11b5bf43b44954452a4e74f523ea;p=clang Remove old proposal notices Let's just go ahead and assume the answer was 'I do' git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210295 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ItaniumMangle.cpp b/lib/AST/ItaniumMangle.cpp index 58a44b7645..92a3033ade 100644 --- a/lib/AST/ItaniumMangle.cpp +++ b/lib/AST/ItaniumMangle.cpp @@ -2674,7 +2674,6 @@ recurse: llvm_unreachable("cannot mangle opaque value; mangling wrong thing?"); case Expr::InitListExprClass: { - // Proposal by Jason Merrill, 2012-01-03 Out << "il"; const InitListExpr *InitList = cast(E); for (unsigned i = 0, e = InitList->getNumInits(); i != e; ++i) @@ -2739,7 +2738,6 @@ recurse: Out << '_'; mangleType(New->getAllocatedType()); if (New->hasInitializer()) { - // Proposal by Jason Merrill, 2012-01-03 if (New->getInitializationStyle() == CXXNewExpr::ListInit) Out << "il"; else @@ -2825,7 +2823,6 @@ recurse: const CXXConstructExpr *CE = cast(E); unsigned N = CE->getNumArgs(); - // Proposal by Jason Merrill, 2012-01-03 if (CE->isListInitialization()) Out << "tl"; else diff --git a/test/CodeGenCXX/mangle-template.cpp b/test/CodeGenCXX/mangle-template.cpp index 8fd27b89fb..998096a57b 100644 --- a/test/CodeGenCXX/mangle-template.cpp +++ b/test/CodeGenCXX/mangle-template.cpp @@ -147,7 +147,7 @@ namespace test10 { } } -// Report from Jason Merrill on cxx-abi-dev, 2012.01.04. +// Report from cxx-abi-dev, 2012.01.04. namespace test11 { int cmp(char a, char b); template struct A {};