* symfile.c (deduce_language_from_filename): .cpp is a C++ extension.

This commit is contained in:
Jim Kingdon 1994-04-02 15:40:00 +00:00
parent d6d6b18ab2
commit d541230260
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,7 @@
Fri Apr 1 14:04:34 1994 Jason Merrill (jason@deneb.cygnus.com)
* symfile.c (deduce_language_from_filename): .cpp is a C++ extension.
Fri Apr 1 00:44:00 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) Fri Apr 1 00:44:00 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
For SVR4 targets, enable gdb to set breakpoints in shared For SVR4 targets, enable gdb to set breakpoints in shared

View file

@ -690,11 +690,11 @@ symbol_file_command (args, from_tty)
if (text_relocation == (CORE_ADDR)0) if (text_relocation == (CORE_ADDR)0)
return; return;
else if (text_relocation == (CORE_ADDR)-1) else if (text_relocation == (CORE_ADDR)-1)
symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped, readno symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped,
w); readnow);
else else
symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation, 0, symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation,
mapped, readnow); 0, mapped, readnow);
set_initial_language (); set_initial_language ();
} }
argv++; argv++;
@ -1202,7 +1202,8 @@ deduce_language_from_filename (filename)
return language_m2; return language_m2;
else if (STREQ(c,".c")) else if (STREQ(c,".c"))
return language_c; return language_c;
else if (STREQ (c,".cc") || STREQ (c,".C") || STREQ (c, ".cxx")) else if (STREQ (c,".cc") || STREQ (c,".C") || STREQ (c, ".cxx")
|| STREQ (c, ".cpp"))
return language_cplus; return language_cplus;
else if (STREQ (c,".ch") || STREQ (c,".c186") || STREQ (c,".c286")) else if (STREQ (c,".ch") || STREQ (c,".c186") || STREQ (c,".c286"))
return language_chill; return language_chill;