diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 0504eeb..12fb7c4 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3085,7 +3085,7 @@ compare_constant (const tree t1, const tree t2) case MINUS_EXPR: case RANGE_EXPR: return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0)) - && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1))); + && compare_constant (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1))); CASE_CONVERT: case VIEW_CONVERT_EXPR: @@ -5546,9 +5546,9 @@ void do_assemble_alias (tree decl, tree target) { /* Emulated TLS had better not get this var. */ - gcc_assert(!(!targetm.have_tls - && TREE_CODE (decl) == VAR_DECL - && DECL_THREAD_LOCAL_P (decl))); + gcc_assert (!(!targetm.have_tls + && TREE_CODE (decl) == VAR_DECL + && DECL_THREAD_LOCAL_P (decl))); if (TREE_ASM_WRITTEN (decl)) return; |