diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 21:10:54 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 21:10:54 +0000 |
commit | 0978efa06693a85ec2eb5a21e4fe634688c38006 (patch) | |
tree | 6d5ebf3aae4e0fbe9e793722be9c20400763ea57 /libgloss/mips/crt0.S | |
parent | 68dea338192334c0b61dec2e910e1584ef08522f (diff) | |
download | cygnal-0978efa06693a85ec2eb5a21e4fe634688c38006.tar.gz cygnal-0978efa06693a85ec2eb5a21e4fe634688c38006.tar.bz2 cygnal-0978efa06693a85ec2eb5a21e4fe634688c38006.zip |
2002-01-07 Chris Demetriou <cgd@broadcom.com>
* crt0.S: Check for definition of __mips64 rather than
checking (__mips < 3).
* pmon.S: Likewise.
* cygmon.c (sysCall): Avoid multi-line string literals.
Diffstat (limited to 'libgloss/mips/crt0.S')
-rw-r--r-- | libgloss/mips/crt0.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/mips/crt0.S b/libgloss/mips/crt0.S index 0a8847f61..d8d78eddf 100644 --- a/libgloss/mips/crt0.S +++ b/libgloss/mips/crt0.S @@ -66,7 +66,7 @@ _start: nop move s0,$31 #endif -#if (__mips < 3) || (__mips_fpr==32) +#if !defined(__mips64) || (__mips_fpr==32) #define STATUS_MASK (SR_CU1|SR_PE) #else # For mips3 or mips4, turn on 64-bit addressing and additional float regs |