* 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)
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)
return;
else if (text_relocation == (CORE_ADDR)-1)
symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped, readno
w);
symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped,
readnow);
else
symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation, 0,
mapped, readnow);
symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation,
0, mapped, readnow);
set_initial_language ();
}
argv++;
@ -1202,7 +1202,8 @@ deduce_language_from_filename (filename)
return language_m2;
else if (STREQ(c,".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;
else if (STREQ (c,".ch") || STREQ (c,".c186") || STREQ (c,".c286"))
return language_chill;