summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-10-07 12:36:00 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-10-07 12:36:00 +0000
commit6f2d82585ff24dc69687e9fca6f6661f68177929 (patch)
treeca8da87a3784ab1e5d1459ce036707b9c3f67884
parentbabc13fade2a247852ed9957d474ea665d0951fa (diff)
downloadgcc-6f2d82585ff24dc69687e9fca6f6661f68177929.tar.gz
Fix typo in last change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8236 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index f3aa69faabd..ea971a53435 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -3532,8 +3532,8 @@ safe_from_p (x, exp)
have no way of allocating temporaries of variable size. So we
assume here that something at a higher level has prevented a
clash. This is somewhat bogus, but the best we can do. */
- || (TREE_TYPE (exp) != 0 &&
- TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST))
+ || (TREE_TYPE (exp) != 0 && TYPE_SIZE (TREE_TYPE (exp)) != 0
+ && TREE_CODE (TYPE_SIZE (TREE_TYPE (exp))) != INTEGER_CST))
return 1;
/* If this is a subreg of a hard register, declare it unsafe, otherwise,