Module Name:    src
Committed By:   christos
Date:           Sat Jul 14 23:41:43 UTC 2018

Modified Files:
        src/external/gpl3/gcc/dist/libiberty: alloca.c

Log Message:
clang does not like auto in c++


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gcc/dist/libiberty/alloca.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libiberty/alloca.c
diff -u src/external/gpl3/gcc/dist/libiberty/alloca.c:1.1.1.1 src/external/gpl3/gcc/dist/libiberty/alloca.c:1.2
--- src/external/gpl3/gcc/dist/libiberty/alloca.c:1.1.1.1	Mon Jun 20 21:23:29 2011
+++ src/external/gpl3/gcc/dist/libiberty/alloca.c	Sat Jul 14 19:41:43 2018
@@ -161,7 +161,7 @@ static header *last_alloca_header = NULL
 PTR
 C_alloca (size_t size)
 {
-  auto char probe;		/* Probes stack depth: */
+  char probe;		/* Probes stack depth: */
   register char *depth = ADDRESS_FUNCTION (probe);
 
 #if STACK_DIRECTION == 0

Reply via email to