From: Alp Toker Date: Thu, 5 Jun 2014 22:11:20 +0000 (+0000) Subject: Remove old proposal notices X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84ea12b5dc0a21698aa8ea2d3768c4b321625c65;p=platform%2Fupstream%2Fllvm.git Remove old proposal notices Let's just go ahead and assume the answer was 'I do' llvm-svn: 210295 --- diff --git a/clang/lib/AST/ItaniumMangle.cpp b/clang/lib/AST/ItaniumMangle.cpp index 58a44b7..92a3033 100644 --- a/clang/lib/AST/ItaniumMangle.cpp +++ b/clang/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/clang/test/CodeGenCXX/mangle-template.cpp b/clang/test/CodeGenCXX/mangle-template.cpp index 8fd27b8..998096a 100644 --- a/clang/test/CodeGenCXX/mangle-template.cpp +++ b/clang/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 {};