From caf445020157f3b1b44bcd10ab6437e005e13195 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 27 Oct 1995 06:46:08 -0400 Subject: [PATCH] (struct asm_option): Changed from struct option. (expand_block_move_mem): Remove erroneously-added line. From-SVN: r10531 --- gcc/config/rs6000/rs6000.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index ad7872d2d5e..08ebd4e37da 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -82,7 +82,7 @@ static rtx stack_temps[NUM_MACHINE_MODES]; extern char *version_string, *language_string; -struct option +struct asm_option { char *string; int *variable; @@ -115,9 +115,9 @@ static struct { char *name; int value; } m_options[] = TARGET_SWITCHES; void output_options (file, f_options, f_len, W_options, W_len) FILE *file; - struct option *f_options; + struct asm_option *f_options; int f_len; - struct option *W_options; + struct asm_option *W_options; int W_len; { int j; @@ -1166,9 +1166,6 @@ expand_block_move_mem (mode, addr, orig_mem) rtx mem = gen_rtx (MEM, mode, addr); MEM_VOLATILE_P (mem) = MEM_VOLATILE_P (orig_mem); MEM_IN_STRUCT_P (mem) = MEM_IN_STRUCT_P (orig_mem); - /* CYGNUS LOCAL unaligned-pointers */ - MEM_UNALIGNED_P (mem) = MEM_UNALIGNED_P (orig_mem); - /* END CYGNUS LOCAL unaligned-pointers */ return mem; } -- 2.30.2