summaryrefslogtreecommitdiff
path: root/gcc/ch
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ch')
-rw-r--r--gcc/ch/ChangeLog4
-rw-r--r--gcc/ch/ch-tree.h6
-rw-r--r--gcc/ch/tasking.h6
3 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index 912bca31862..30775c61f59 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -1,3 +1,7 @@
+2001-05-25 Sam TH <sam@uchicago.edu>
+
+ * ch-tree.h tasking.h: Fix header include guards.
+
2001-05-20 Joseph S. Myers <jsm28@cam.ac.uk>
* Make-lang.in (chill.dvi): Remove bogus dependencies. Don't cd
diff --git a/gcc/ch/ch-tree.h b/gcc/ch/ch-tree.h
index 4d652b1eb2b..d38445bb0f4 100644
--- a/gcc/ch/ch-tree.h
+++ b/gcc/ch/ch-tree.h
@@ -19,8 +19,8 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef _CH_TREE_H
-#define _CH_TREE_H
+#ifndef GCC_CH_TREE_H
+#define GCC_CH_TREE_H
/* Usage of TREE_LANG_FLAG_?:
1: TUPLE_NAMED_FIELD
@@ -1154,4 +1154,4 @@ extern tree deep_fold PARAMS ((tree));
extern const char * const gnuchill_version;
-#endif
+#endif /* ! GCC_CH_TREE_H */
diff --git a/gcc/ch/tasking.h b/gcc/ch/tasking.h
index 7650c2f8cc9..2a899fdfedb 100644
--- a/gcc/ch/tasking.h
+++ b/gcc/ch/tasking.h
@@ -18,10 +18,10 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef _CH_TASKING_H
-#define _CH_TASKING_H
+#ifndef GCC_TASKING_H
+#define GCC_TASKING_H
/* list of this module's process, buffer, etc. decls */
extern tree tasking_list;
-#endif
+#endif /* ! GCC_TASKING_H */