]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/d/d-gimplify.cc
d: Add `@visibility' and `@hidden' attributes.
[thirdparty/gcc.git] / gcc / d / d-gimplify.cc
index 36b76da3acc8f7e8419f08d697f2b8e1ba097c59..33fe65c346610fb74353861b3494f8afebb75b12 100644 (file)
@@ -235,10 +235,10 @@ d_gimplify_binary_expr (tree *expr_p)
   if (bit_field_ref (op0) || bit_field_ref (op1))
     {
       if (TREE_TYPE (op0) != TREE_TYPE (*expr_p))
-       TREE_OPERAND (*expr_p, 0) = convert (TREE_TYPE (*expr_p), op0);
+       TREE_OPERAND (*expr_p, 0) = convert (TREE_TYPE (*expr_p), op0);
 
       if (TREE_TYPE (op1) != TREE_TYPE (*expr_p))
-       TREE_OPERAND (*expr_p, 1) = convert (TREE_TYPE (*expr_p), op1);
+       TREE_OPERAND (*expr_p, 1) = convert (TREE_TYPE (*expr_p), op1);
 
       return GS_OK;
     }