diff options
author | Richard Henderson <rth@redhat.com> | 2001-02-11 11:04:31 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-02-11 11:04:31 -0800 |
commit | 258835c78bfbb74c7cf9f0cf98e5939dec3fdb26 (patch) | |
tree | 07df2b6c6082ca3eb9f279bb333847f247f1a7ab /gcc/tree.c | |
parent | 48dbafe4a98239d93121fdc79e0af05b95b3f682 (diff) | |
download | gcc-258835c78bfbb74c7cf9f0cf98e5939dec3fdb26.zip gcc-258835c78bfbb74c7cf9f0cf98e5939dec3fdb26.tar.gz gcc-258835c78bfbb74c7cf9f0cf98e5939dec3fdb26.tar.bz2 |
* tree.c (build1): Check for null operand in last change.
From-SVN: r39587
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2482,7 +2482,7 @@ build1 (code, type, node) break; default: - if (TREE_CODE_CLASS (code) == '1' && TREE_CONSTANT (node)) + if (TREE_CODE_CLASS (code) == '1' && node && TREE_CONSTANT (node)) TREE_CONSTANT (t) = 1; break; } |