]> granicus.if.org Git - clang/commitdiff
Remove old proposal notices
authorAlp Toker <alp@nuanti.com>
Thu, 5 Jun 2014 22:11:20 +0000 (22:11 +0000)
committerAlp Toker <alp@nuanti.com>
Thu, 5 Jun 2014 22:11:20 +0000 (22:11 +0000)
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

lib/AST/ItaniumMangle.cpp
test/CodeGenCXX/mangle-template.cpp

index 58a44b7645afc914302d300d926adbf17c0e89b5..92a3033ade22a8a08b4dd1fd5a2191e0e7b0d16a 100644 (file)
@@ -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<InitListExpr>(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<CXXConstructExpr>(E);
     unsigned N = CE->getNumArgs();
 
-    // Proposal by Jason Merrill, 2012-01-03
     if (CE->isListInitialization())
       Out << "tl";
     else
index 8fd27b89fbe62ad6b110f7d93e03eef69b4faac0..998096a57be4cb508693a0222a5e9f86aefff3fd 100644 (file)
@@ -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 <typename T, int (*cmp)(T, T)> struct A {};