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]

Re: [PATCH 2/3] New field 'la_natural_name' in struct language_defn


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 (éå)


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