mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:40:48 +08:00
* semantics.c (force_paren_expr): Preserve location.
From-SVN: r274120
This commit is contained in:
parent
55f863c4d6
commit
ea55c91543
@ -1,3 +1,7 @@
|
||||
2019-08-05 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* semantics.c (force_paren_expr): Preserve location.
|
||||
|
||||
2019-08-02 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.
|
||||
|
@ -1745,14 +1745,16 @@ force_paren_expr (tree expr)
|
||||
&& TREE_CODE (expr) != SCOPE_REF)
|
||||
return expr;
|
||||
|
||||
location_t loc = cp_expr_location (expr);
|
||||
|
||||
if (TREE_CODE (expr) == COMPONENT_REF
|
||||
|| TREE_CODE (expr) == SCOPE_REF)
|
||||
REF_PARENTHESIZED_P (expr) = true;
|
||||
else if (processing_template_decl)
|
||||
expr = build1 (PAREN_EXPR, TREE_TYPE (expr), expr);
|
||||
expr = build1_loc (loc, PAREN_EXPR, TREE_TYPE (expr), expr);
|
||||
else
|
||||
{
|
||||
expr = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (expr), expr);
|
||||
expr = build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (expr), expr);
|
||||
REF_PARENTHESIZED_P (expr) = true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user