diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-12-05 09:51:36 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-12-05 09:51:36 +0100 |
commit | ea6dafb028261d6a2909c607277c9c2f16c9267e (patch) | |
tree | c14406fb70101244102262b343af28b830678d30 /gcc/fold-const.c | |
parent | 250d2fb5b2e0403954397dfc02d91acaa92bd243 (diff) | |
download | gcc-ea6dafb028261d6a2909c607277c9c2f16c9267e.zip gcc-ea6dafb028261d6a2909c607277c9c2f16c9267e.tar.gz gcc-ea6dafb028261d6a2909c607277c9c2f16c9267e.tar.bz2 |
re PR c/38408 (compilation error during bootstrap in fold-const.c using TOT!)
PR c/38408
* fold-const.c (fold_checksum_tree): Change buf type to union
tree_node.
From-SVN: r142468
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 41779e5..f542c45 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -13340,7 +13340,7 @@ fold_checksum_tree (const_tree expr, struct md5_ctx *ctx, htab_t ht) { const void **slot; enum tree_code code; - struct tree_function_decl buf; + union tree_node buf; int i, len; recursive_label: |