diff options
author | Tom Tromey <tom@tromey.com> | 2020-11-14 09:22:17 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-11-14 09:24:41 -0700 |
commit | 749065b7a71a877b96db280dbdc5ddf6fd259827 (patch) | |
tree | c420713c9f1a28324699e8d0ddf6da382f8326b8 /gdb/opencl-lang.c | |
parent | 2c5b1849a6814a52f3e2dd7f0e1eaf6f9dcd2359 (diff) | |
download | gdb-749065b7a71a877b96db280dbdc5ddf6fd259827.zip gdb-749065b7a71a877b96db280dbdc5ddf6fd259827.tar.gz gdb-749065b7a71a877b96db280dbdc5ddf6fd259827.tar.bz2 |
Add use of const in opencl-lang.c
I found another expression-related spot that could use constification.
This patch adds it. Tested by rebuilding.
gdb/ChangeLog
2020-11-14 Tom Tromey <tom@tromey.com>
* opencl-lang.c (opencl_component_ref): Make "comps" const.
Diffstat (limited to 'gdb/opencl-lang.c')
-rw-r--r-- | gdb/opencl-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/opencl-lang.c b/gdb/opencl-lang.c index 11032b1..e04fc54 100644 --- a/gdb/opencl-lang.c +++ b/gdb/opencl-lang.c @@ -327,8 +327,8 @@ create_value (struct gdbarch *gdbarch, struct value *val, enum noside noside, /* OpenCL vector component access. */ static struct value * -opencl_component_ref (struct expression *exp, struct value *val, char *comps, - enum noside noside) +opencl_component_ref (struct expression *exp, struct value *val, + const char *comps, enum noside noside) { LONGEST lowb, highb; int src_len; |