diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-11-13 15:42:39 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-11-13 15:42:39 +0100 |
commit | cea094edca95e223af343aa597065bb255b5c772 (patch) | |
tree | f2ff71ebf751f71334cf88d18182e31e8370f3bd /gcc/gimple.h | |
parent | f42ab145aae3edb9a29a92662fc1a08207d30d94 (diff) | |
download | gcc-cea094edca95e223af343aa597065bb255b5c772.zip gcc-cea094edca95e223af343aa597065bb255b5c772.tar.gz gcc-cea094edca95e223af343aa597065bb255b5c772.tar.bz2 |
re PR bootstrap/38100 (gcc fails to compile with (undefined symbol) gimple_check_failed error)
PR bootstrap/38100
* gimple.h (gimple_range_check_failed): Remove prototype.
* gimple.c (gimple_check_failed): Don't check GCC_VERSION
in guarding #if.
(gimple_range_check_failed): Removed.
From-SVN: r141820
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index a6947c3..debba12 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -59,9 +59,6 @@ extern const unsigned char gimple_rhs_class_table[]; extern void gimple_check_failed (const_gimple, const char *, int, \ const char *, enum gimple_code, \ enum tree_code) ATTRIBUTE_NORETURN; -extern void gimple_range_check_failed (const_gimple, const char *, int, \ - const char *, enum gimple_code, \ - enum gimple_code) ATTRIBUTE_NORETURN; #define GIMPLE_CHECK(GS, CODE) \ do { \ |