This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[rfa] function parameter shadowed by local variable in opencl-lang.c


Probably this wasn't intentional?

2011-02-26  Michael Snyder  <msnyder@vmware.com>

	* opencl-lang.c (lval_func_check_synthetic_pointer): Local variable
	shadows function parameter.

Index: opencl-lang.c
===================================================================
RCS file: /cvs/src/src/gdb/opencl-lang.c,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 opencl-lang.c
--- opencl-lang.c	21 Feb 2011 15:53:10 -0000	1.7
+++ opencl-lang.c	26 Feb 2011 23:19:10 -0000
@@ -318,11 +318,11 @@ lval_func_check_synthetic_pointer (const
   for (i = start; i < end; i++)
     {
       int startoffset = (i == start) ? startrest : 0;
-      int length = (i == end) ? endrest : elsize;
+      int length2 = (i == end) ? endrest : elsize;
 
       if (!value_bits_synthetic_pointer (c->val,
 					 c->indices[i] * elsize + startoffset,
-					 length))
+					 length2))
 	return 0;
     }
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]