diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-10-23 17:23:09 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-10-23 17:23:09 -0700 |
commit | dc29832d1a13961b39356c3808df46f78aa3b8ab (patch) | |
tree | ff6705abc06a895bfc6e9e8c5cb6247025600571 | |
parent | 1162b3a61f635dd1503ec8f9bfb58a30b308a5bb (diff) | |
download | gcc-dc29832d1a13961b39356c3808df46f78aa3b8ab.zip gcc-dc29832d1a13961b39356c3808df46f78aa3b8ab.tar.gz gcc-dc29832d1a13961b39356c3808df46f78aa3b8ab.tar.bz2 |
New file.
From-SVN: r5872
-rw-r--r-- | gcc/config/mips/xm-iris5.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config/mips/xm-iris5.h b/gcc/config/mips/xm-iris5.h new file mode 100644 index 0000000..72387b2 --- /dev/null +++ b/gcc/config/mips/xm-iris5.h @@ -0,0 +1,9 @@ +#include "mips/xm-mips.h" + +#define USG +#define HAVE_VPRINTF + +#define bcopy(a,b,c) memcpy (b,a,c) +#define bzero(a,b) memset (a,0,b) +#define bcmp(a,b,c) memcmp (a,b,c) + |