aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/rtti.c
diff options
context:
space:
mode:
authorJason Merrill <jason@yorick.cygnus.com>1997-05-06 20:14:14 +0000
committerMike Stump <mrs@gcc.gnu.org>1997-05-06 20:14:14 +0000
commitbeb53fb84a96ecfc7b5f207df6ed13014ec23a9d (patch)
treeebe6e9cdaf48b8ffa8ac8c4a3fa3e9596e317942 /gcc/cp/rtti.c
parent065bbfe6bf8a705bcfa5a7396559ac6e1660d7e6 (diff)
downloadgcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.zip
gcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.tar.gz
gcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.tar.bz2
91th Cygnus<->FSF quick merge
From-SVN: r14021
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r--gcc/cp/rtti.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c
index 0fbfc01..c1afbd6 100644
--- a/gcc/cp/rtti.c
+++ b/gcc/cp/rtti.c
@@ -441,8 +441,8 @@ build_dynamic_cast (type, expr)
goto fail;
if (TYPE_SIZE (TREE_TYPE (exprtype)) == NULL_TREE)
goto fail;
- if (TREE_READONLY (TREE_TYPE (exprtype)) &&
- ! TYPE_READONLY (TREE_TYPE (type)))
+ if (TREE_READONLY (TREE_TYPE (exprtype))
+ && ! TYPE_READONLY (TREE_TYPE (type)))
goto fail;
if (TYPE_MAIN_VARIANT (TREE_TYPE (type)) == void_type_node)
break;
@@ -477,8 +477,8 @@ build_dynamic_cast (type, expr)
goto fail;
if (TYPE_SIZE (TREE_TYPE (exprtype)) == NULL_TREE)
goto fail;
- if (TREE_READONLY (TREE_TYPE (exprtype)) &&
- ! TYPE_READONLY (TREE_TYPE (type)))
+ if (TREE_READONLY (TREE_TYPE (exprtype))
+ && ! TYPE_READONLY (TREE_TYPE (type)))
goto fail;
}
@@ -833,8 +833,8 @@ expand_class_desc (tdecl, type)
{
tree arrtype = build_array_type (base_info_type_node, NULL_TREE);
elts = build (CONSTRUCTOR, arrtype, NULL_TREE, elts);
- TREE_HAS_CONSTRUCTOR (elts) = TREE_CONSTANT (elts) =
- TREE_STATIC (elts) = 1;
+ TREE_HAS_CONSTRUCTOR (elts) = TREE_CONSTANT (elts)
+ = TREE_STATIC (elts) = 1;
complete_array_type (arrtype, elts, 1);
}