diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-05 08:51:36 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-05 08:51:36 +0000 |
commit | 7718e3c3f5c7510667d0e888f8022a6eb0e0090c (patch) | |
tree | c14406fb70101244102262b343af28b830678d30 /gcc/fold-const.c | |
parent | 29bb3e395b0648c788bdc530e3dc352bbe63f9fc (diff) | |
download | gcc-7718e3c3f5c7510667d0e888f8022a6eb0e0090c.tar.gz |
PR c/38408
* fold-const.c (fold_checksum_tree): Change buf type to union
tree_node.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142468 138bc75d-0d04-0410-961f-82ee72b054a4
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 41779e576bb..f542c45c5f5 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: |