diff options
author | Richard Henderson <rth@redhat.com> | 2011-01-22 11:35:10 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2011-01-22 11:35:10 -0800 |
commit | e692f27683b38733fedc67b62ddd5f41b9a9e0ed (patch) | |
tree | e448736a4d2079d8b2bb7d5d43e46d716b00478c /gcc/recog.h | |
parent | 8a9adf2c8fde74d9789b01f5c35c0e652dd69a8a (diff) | |
download | gcc-e692f27683b38733fedc67b62ddd5f41b9a9e0ed.tar.gz |
New -fcompare-elim pass.
Version 3, with two rounds of comments from Paolo Bonzini.
From-SVN: r169131
Diffstat (limited to 'gcc/recog.h')
-rw-r--r-- | gcc/recog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/recog.h b/gcc/recog.h index 217c6e56c86..534d2c99b18 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ +#ifndef GCC_RECOG_H +#define GCC_RECOG_H + /* Random number that should be large enough for all purposes. */ #define MAX_RECOG_ALTERNATIVES 30 @@ -305,3 +308,5 @@ struct insn_data_d extern const struct insn_data_d insn_data[]; extern int peep2_current_count; + +#endif /* GCC_RECOG_H */ |