2011-02-26 Michael Snyder * 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; }