On Tue, 31 Jan 2017, Martin Sebor wrote:
> Thanks for the careful review (and debugging)!

Thanks for taking the time to prepare all this to begin with. ;-)

On Wed, 1 Feb 2017, Jakub Jelinek wrote:
>>>   void f (size_t n)
>>>   {
>>>     char *d = alloca (n)
> Missing semicolon after alloca (n)

Martin might argue that this was covered by the ellipsis dots
in the following line ;-), but I admit that's a little tongue
in cheek and went ahead with the patch below.

Thanks for your careful reviews, Jakub!

Gerald

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
retrieving revision 1.52
diff -u -r1.52 changes.html
--- changes.html        1 Feb 2017 10:16:47 -0000       1.52
+++ changes.html        1 Feb 2017 19:05:12 -0000
@@ -368,7 +368,7 @@
       <blockquote><pre>
 void f (size_t n)
 {
-  char *d = alloca (n)
+  char *d = alloca (n);
   &hellip;
 }
 

Reply via email to