* optc-gen.awk: Include intl.h after the externally-provided files.
authorRichard Sandiford <rsandifo@redhat.com>
Mon, 16 May 2005 18:14:03 +0000 (18:14 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Mon, 16 May 2005 18:14:03 +0000 (18:14 +0000)
From-SVN: r99783

gcc/ChangeLog
gcc/optc-gen.awk

index a576233c1f43f037e1b2d8aedf205e649c42dd70..aadf8ff2c885135aa540ae18b7f3fdfd759e2af3 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-16  Richard Sandiford  <rsandifo@redhat.com>
+
+       * optc-gen.awk: Include intl.h after the externally-provided files.
+
 2005-05-16  Kazu Hirata  <kazu@cs.umass.edu>
 
        * tree-ssa-copy.c (copy_prop_visit_assignment): Clean up by
index e647cd9ad21e72d98b79abff382093ef668879d0..4c4eef7a8a2f3b8968ac34e5434a7158a5a28fa4 100644 (file)
@@ -56,11 +56,11 @@ BEGIN {
 END {
 print "/* This file is auto-generated by opts.sh.  */"
 print ""
-print "#include <intl.h>"
 n_headers = split(header_name, headers, " ")
 for (i = 1; i <= n_headers; i++)
        print "#include " quote headers[i] quote
 print "#include " quote "opts.h" quote
+print "#include " quote "intl.h" quote
 print ""
 
 for (i = 0; i < n_opts; i++) {