diff options
author | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
commit | b50420fd058824ecc737709f49f87d622b0f3371 (patch) | |
tree | cc1f11c246023c7acb69e0257b85fcbb866d46ab /binutils | |
parent | b24a386d75a769d2362e9f9261a2efb023a88a82 (diff) | |
download | binutils-b50420fd058824ecc737709f49f87d622b0f3371.zip binutils-b50420fd058824ecc737709f49f87d622b0f3371.tar.gz binutils-b50420fd058824ecc737709f49f87d622b0f3371.tar.bz2 |
[gdb/testsuite] Use regular proc syntax for gdb_caching_proc
A regular tcl proc with no args looks like:
...
proc foo {} {
return 1
}
...
but a gdb_caching_proc deviates from that syntax by dropping the explicit no
args bit:
...
gdb_caching_proc foo {
return 1
}
...
Make the gdb_caching_proc use the same syntax as regular procs, such that we
have instead:
...
gdb_caching_proc foo {} {
return 1
}
...
Tested on x86_64-linux.
Reviewed-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'binutils')
0 files changed, 0 insertions, 0 deletions