This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 2/3] New field 'la_natural_name' in struct language_defn
- From: Yao Qi <yao at codesourcery dot com>
- To: <gdb-patches at sourceware dot org>
- Date: Tue, 29 Oct 2013 16:40:07 +0800
- Subject: Re: [PATCH 2/3] New field 'la_natural_name' in struct language_defn
- Authentication-results: sourceware.org; auth=none
- References: <20131025041525 dot GC4769 at adacore dot com> <1382964489-24307-1-git-send-email-yao at codesourcery dot com> <1382964489-24307-2-git-send-email-yao at codesourcery dot com>
I go through the supported languages in user manual
https://sourceware.org/gdb/current/onlinedocs/gdb/Supported-Languages.html#Supported-Languages
and think we should update some of them to be consistent with the doc.
On 10/28/2013 08:48 PM, Yao Qi wrote:
@@ -978,6 +980,7 @@ const struct language_defn cplus_language_defn =
const struct language_defn asm_language_defn =
{
"asm", /* Language name */
+ "ASM",
"assembly" or "Assembly"?
language_asm,
range_check_off,
case_sensitive_on,
diff --git a/gdb/opencl-lang.c b/gdb/opencl-lang.c
index faf88d9..1781d37 100644
--- a/gdb/opencl-lang.c
+++ b/gdb/opencl-lang.c
@@ -1103,6 +1103,7 @@ const struct exp_descriptor exp_descriptor_opencl =
const struct language_defn opencl_language_defn =
{
"opencl", /* Language name */
+ "OpenCL",
"OpenCL C"
--
Yao (éå)