aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2006-10-30 17:51:46 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2006-10-30 17:51:46 +0000
commit428aba16aa4b474842fa38aa6599f7d6118f2fae (patch)
tree2ce04ecaaae7281c4ae1af515ef85ebd6c45735a /gcc/tree.c
parent0e697399655c6ae1a53267d3d38e462b8848910e (diff)
downloadgcc-428aba16aa4b474842fa38aa6599f7d6118f2fae.zip
gcc-428aba16aa4b474842fa38aa6599f7d6118f2fae.tar.gz
gcc-428aba16aa4b474842fa38aa6599f7d6118f2fae.tar.bz2
builtins.c (expand_builtin_mathfn_3): Correct coding style.
* builtins.c (expand_builtin_mathfn_3): Correct coding style. * ddg.c (print_ddg_edge): Likewise. * dwarf2out.c (prune_unused_types_walk): Likewise. * ifcvt.c (noce_try_cmove_arith): Likewise. * langhooks.c (add_builtin_function): Likewise. * reg-stack.c (subst_stack_regs_pat): Likewise. * tree.c (expanded_location): Likewise. * tree-dump.c (dequeue_and_dump): Likewise. From-SVN: r118187
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index d0c56c4..4ee65f0 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -3220,7 +3220,12 @@ expanded_location
expand_location (source_location loc)
{
expanded_location xloc;
- if (loc == 0) { xloc.file = NULL; xloc.line = 0; xloc.column = 0; }
+ if (loc == 0)
+ {
+ xloc.file = NULL;
+ xloc.line = 0;
+ xloc.column = 0;
+ }
else
{
const struct line_map *map = linemap_lookup (&line_table, loc);