diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-27 16:12:51 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-27 16:12:51 +0000 |
commit | e2edec23e59d20cec6b98a7a58808635353a140b (patch) | |
tree | 45857aa572e3d4cc94d622fbf4428b32236cac87 /libgloss | |
parent | 8e4735df6c3c79ae01e631aea85729fce0264e47 (diff) | |
download | newlib-e2edec23e59d20cec6b98a7a58808635353a140b.zip newlib-e2edec23e59d20cec6b98a7a58808635353a140b.tar.gz newlib-e2edec23e59d20cec6b98a7a58808635353a140b.tar.bz2 |
2006-11-27 Jeff Johnston <jjohnstn@redhat.com>
* mips/crt0.S: Fix preprocessor statements from previous patch
to be ANSI.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/mips/crt0.S | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 5677789..2dfba15 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2006-11-27 Jeff Johnston <jjohnstn@redhat.com> + + * mips/crt0.S: Fix preprocessor statements from previous patch + to be ANSI. + 2006-11-24 Thiemo Seufer <ths@mips.com> Nigel Stephens <nigel@mips.com> diff --git a/libgloss/mips/crt0.S b/libgloss/mips/crt0.S index 651b2a7..599e79c 100644 --- a/libgloss/mips/crt0.S +++ b/libgloss/mips/crt0.S @@ -73,7 +73,7 @@ _start: /* Turn on 64-bit addressing and additional float regs. */ # define STATUS_MASK (SR_CU1|SR_FR|SR_KX|SR_SX|SR_UX) # else -# ifdef __mips_fpr=32 +# if __mips_fpr==32 # define STATUS_MASK (SR_CU1) # else /* Turn on additional float regs. */ |