aboutsummaryrefslogtreecommitdiff
path: root/gcc/ch
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2001-05-25 18:31:47 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-05-25 18:31:47 -0700
commit88657302b711baa2b317b2bb91c93d0a03e16b36 (patch)
treea63afad955af14544b1903785b68f16116173e26 /gcc/ch
parentf811f821d511e7d03dbca9cd645d03bc721b92a2 (diff)
downloadgcc-88657302b711baa2b317b2bb91c93d0a03e16b36.zip
gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.gz
gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.bz2
Standardize header guards.
From-SVN: r42615
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 912bca3..30775c6 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 4d652b1..d38445b 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 7650c2f..2a899fd 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 */