Commit 328da75c by Jeffrey A Law Committed by Jeff Law

* vms.h (SELECT_SECTION): Use TREE_CODE_CLASS correctly.

From-SVN: r18195
parent b50fa387
Sun Feb 22 20:58:19 1998 Jeffrey A Law (law@cygnus.com)
* vms.h (SELECT_SECTION): Use TREE_CODE_CLASS correctly.
1998-02-22 Paul Eggert <eggert@twinsun.com> 1998-02-22 Paul Eggert <eggert@twinsun.com>
* config/sparc/sol2-sld.h (LINKER_DOES_NOT_WORK_WITH_DWARF2): * config/sparc/sol2-sld.h (LINKER_DOES_NOT_WORK_WITH_DWARF2):
......
...@@ -264,7 +264,7 @@ const_section () \ ...@@ -264,7 +264,7 @@ const_section () \
else \ else \
data_section (); \ data_section (); \
} \ } \
if (*tree_code_type[(int) TREE_CODE (T)] == 'c') \ if (TREE_CODE_CLASS (TREE_CODE (T)) == 'c') \
{ \ { \
if ((TREE_CODE (T) == STRING_CST && flag_writable_strings)) \ if ((TREE_CODE (T) == STRING_CST && flag_writable_strings)) \
data_section (); \ data_section (); \
...@@ -357,3 +357,13 @@ do { \ ...@@ -357,3 +357,13 @@ do { \
} while (0) } while (0)
#endif /* L__main */ #endif /* L__main */
/* Specify the list of include file directories. */
#define INCLUDE_DEFAULTS \
{ \
{ "GNU_GXX_INCLUDE:", "G++", 1, 1 }, \
{ "GNU_CC_INCLUDE:", "GCC", 0, 0 }, /* GNU includes */ \
{ "SYS$SYSROOT:[SYSLIB.]", 0, 0, 0 }, /* VAX-11 "C" includes */ \
{ ".", 0, 0, 1 }, /* Make normal VMS filespecs work. */ \
{ 0, 0, 0, 0 } \
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment