diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-08-11 19:24:09 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-08-11 19:24:09 +0000 |
commit | e0c32c62d5c47790333bb557ed2d89a3806246d0 (patch) | |
tree | fe53ca4ba392d25b1374ffe33608794308bcfc0e /gcc/config/sh | |
parent | 7ae8cf75dae94f2b0b68f433e0962ffe7883a158 (diff) | |
download | gcc-e0c32c62d5c47790333bb557ed2d89a3806246d0.zip gcc-e0c32c62d5c47790333bb557ed2d89a3806246d0.tar.gz gcc-e0c32c62d5c47790333bb557ed2d89a3806246d0.tar.bz2 |
dsp16xx.c (print_operand): Fix format specifier.
* dsp16xx.c (print_operand): Fix format specifier.
* dsp16xx.md: Avoid automatic aggregate initialization.
* frv.h (REG_CLASS_FROM_LETTER): Avoid char as array index.
* h8300.c (emit_a_rotate, h8300_adjust_insn_length): Avoid U
integer constant modifier.
* ip2k.c (ip2k_set_compare): Avoid signed/unsigned warning.
* mmix-protos.h (mmix_use_simple_return): Move outside TREE_CODE
guards.
* sh/netbsd-elf.h (FUNCTION_PROFILER): Fix format specifier.
* v850.c (v850_select_section): Mark parameter with
ATTRIBUTE_UNUSED.
* global.c (global_alloc): Const-ify.
* ra-colorize.c (hardregset_to_string): Fix format specifier.
From-SVN: r56212
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/netbsd-elf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/sh/netbsd-elf.h b/gcc/config/sh/netbsd-elf.h index ce71402..513b39f 100644 --- a/gcc/config/sh/netbsd-elf.h +++ b/gcc/config/sh/netbsd-elf.h @@ -112,16 +112,16 @@ do \ } \ else \ { \ - fprintf((STREAM), "\tmov.l\t%cLP%d,r1\n", \ + fprintf((STREAM), "\tmov.l\t%sLP%d,r1\n", \ LOCAL_LABEL_PREFIX, (LABELNO)); \ - fprintf((STREAM), "\tmova\t%cLP%dr,r0\n", \ + fprintf((STREAM), "\tmova\t%sLP%dr,r0\n", \ LOCAL_LABEL_PREFIX, (LABELNO)); \ fprintf((STREAM), "\tjmp\t@r1\n"); \ fprintf((STREAM), "\tnop\n"); \ fprintf((STREAM), "\t.align\t2\n"); \ - fprintf((STREAM), "%cLP%d:\t.long\t__mcount\n", \ + fprintf((STREAM), "%sLP%d:\t.long\t__mcount\n", \ LOCAL_LABEL_PREFIX, (LABELNO)); \ - fprintf((STREAM), "%cLP%dr:\n", LOCAL_LABEL_PREFIX, (LABELNO)); \ + fprintf((STREAM), "%sLP%dr:\n", LOCAL_LABEL_PREFIX, (LABELNO)); \ } \ } \ while (0) |