diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 1999-02-25 10:36:37 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 1999-02-25 10:36:37 +0000 |
commit | 9f6ce99046aa5cd8a34bf935c91859f0de40f92a (patch) | |
tree | a75866ced13c883607320aac521546493110cc7f /gcc | |
parent | 6cc8c0b3b5da0b9c48cd95d596cc8ba2f205d460 (diff) | |
download | gcc-9f6ce99046aa5cd8a34bf935c91859f0de40f92a.zip gcc-9f6ce99046aa5cd8a34bf935c91859f0de40f92a.tar.gz gcc-9f6ce99046aa5cd8a34bf935c91859f0de40f92a.tar.bz2 |
Fix minor typo.
From-SVN: r25432
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/arm/arm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 685a267..9768d76 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -98,7 +98,7 @@ extern int frame_pointer_needed; #if TARGET_CPU_DEFAULT == TARGET_CPU_arm7m #define CPP_ARCH_DEFAULT_SPEC "-D__ARM_ARCH_3M__" #else -#if TARGET_CPU_DEFAULT == TARGET_CPU_arm7tdmi || TARGET_CPU_DEFAULT == TARGET_CPU_ARM9 +#if TARGET_CPU_DEFAULT == TARGET_CPU_arm7tdmi || TARGET_CPU_DEFAULT == TARGET_CPU_arm9 #define CPP_ARCH_DEFAULT_SPEC "-D__ARM_ARCH_4T__" #else #if TARGET_CPU_DEFAULT == TARGET_CPU_arm8 || TARGET_CPU_DEFAULT == TARGET_CPU_arm810 || TARGET_CPU_DEFAULT == TARGET_CPU_strongarm @@ -2074,8 +2074,8 @@ do { \ /* Prototypes for arm.c -- actually, they aren't since the types aren't fully defined yet. */ -void arm_override_options (/* void */); -int use_return_insn (/* int */); +void arm_override_options PROTO ((void)); +int use_return_insn PROTO ((int)); int const_ok_for_arm (/* HOST_WIDE_INT */); int const_ok_for_op (/* HOST_WIDE_INT, enum rtx_code, enum machine_mode */); |