diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 22:59:57 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-05-06 22:59:57 +0000 |
commit | 37808e3a06df2a78362bff6389cc0b2e2812f490 (patch) | |
tree | 9ed16f1465684c89cd2e6d3969753dc718b25ad2 /gcc/bc-optab.c | |
parent | e54293e1b439fdc08b51ca5f04bd25d6ae9ba17c (diff) | |
download | gcc-37808e3a06df2a78362bff6389cc0b2e2812f490.tar.gz |
reformat a little to match GNU coding standards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14023 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bc-optab.c')
-rw-r--r-- | gcc/bc-optab.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/bc-optab.c b/gcc/bc-optab.c index 63587e284a9..3d3e539728d 100644 --- a/gcc/bc-optab.c +++ b/gcc/bc-optab.c @@ -536,9 +536,9 @@ deduce_conversion (from, to) obstack_init (&recipe_obstack); curr.next = (struct rl *) obstack_alloc (&recipe_obstack, sizeof (struct rl)); - curr.next->list = - (struct conversion_list *) obstack_alloc (&recipe_obstack, - sizeof (struct conversion_list)); + curr.next->list + = (struct conversion_list *) obstack_alloc (&recipe_obstack, + sizeof (struct conversion_list)); curr.next->list->opcode = -1; curr.next->list->to = from; curr.next->list->cost = 0; @@ -638,9 +638,9 @@ bc_init_mode_to_code_map () for (mode = 0; mode < MAX_MACHINE_MODE + 1; mode++) { - signed_mode_to_code_map[mode] = - unsigned_mode_to_code_map[mode] = - LAST_AND_UNUSED_TYPECODE; + signed_mode_to_code_map[mode] + = unsigned_mode_to_code_map[mode] + = LAST_AND_UNUSED_TYPECODE; } #define DEF_MODEMAP(SYM, CODE, UCODE, CONST, LOAD, STORE) \ |