aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-11-13 14:04:09 +0100
committerMartin Liska <mliska@suse.cz>2020-11-13 14:05:17 +0100
commit5fa821bba737cf3e74801c5fe4d3e87a62aa79bf (patch)
tree4a768a00ecc3a5708e72935a4d02dc7beaa0c410
parent4cfa85396c69d0957eccca896bc88868aaf64073 (diff)
downloadgcc-5fa821bba737cf3e74801c5fe4d3e87a62aa79bf.zip
gcc-5fa821bba737cf3e74801c5fe4d3e87a62aa79bf.tar.gz
gcc-5fa821bba737cf3e74801c5fe4d3e87a62aa79bf.tar.bz2
clang: fix -Wmisleading-indentation warning.
gcc/c-family/c-attribs.c:4698:5: warning: misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation] gcc/c-family/ChangeLog: * c-attribs.c (build_attr_access_from_parms): Format properly.
-rw-r--r--gcc/c-family/c-attribs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-family/c-attribs.c b/gcc/c-family/c-attribs.c
index abdc32e..b979fbc 100644
--- a/gcc/c-family/c-attribs.c
+++ b/gcc/c-family/c-attribs.c
@@ -4701,7 +4701,7 @@ build_attr_access_from_parms (tree parms, bool skip_voidptr)
/* Attribute access takes a two or three arguments. Wrap VBLIST in
another list in case it has more nodes than would otherwise fit. */
- vblist = build_tree_list (NULL_TREE, vblist);
+ vblist = build_tree_list (NULL_TREE, vblist);
/* Build a single attribute access with the string describing all
array arguments and an optional list of any non-parameter VLA