diff options
| author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 07:41:24 +0000 |
|---|---|---|
| committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-05 07:41:24 +0000 |
| commit | f76850c79bdf01f12673aa3fc02abcee2aa9bf6d (patch) | |
| tree | caa27b7ceffd39187e54ad8a950433921d635300 | |
| parent | 443df39e4c8be67b5ac22d706cf34e65ce9ab07a (diff) | |
| download | ppe42-gcc-f76850c79bdf01f12673aa3fc02abcee2aa9bf6d.tar.gz ppe42-gcc-f76850c79bdf01f12673aa3fc02abcee2aa9bf6d.zip | |
* gcc.dg/torture/mips-hilo-2.c: Provide dummy __mips16 version.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81508 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/torture/mips-hilo-2.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1cf06c4cb95..aeff648ee30 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-05-05 Richard Sandiford <rsandifo@redhat.com> + + * gcc.dg/torture/mips-hilo-2.c: Provide dummy __mips16 version. + 2004-05-04 Paolo Bonzini <bonzini@gnu.org> * g++.dg/ext/spe1.C: New testcase. diff --git a/gcc/testsuite/gcc.dg/torture/mips-hilo-2.c b/gcc/testsuite/gcc.dg/torture/mips-hilo-2.c index a8db6176682..0bdff6cd32c 100644 --- a/gcc/testsuite/gcc.dg/torture/mips-hilo-2.c +++ b/gcc/testsuite/gcc.dg/torture/mips-hilo-2.c @@ -2,6 +2,7 @@ the low part of u.ll on little-endian 32-bit targets. */ /* { dg-do run { target mips*-*-* } } */ +#if !defined(__mips16) unsigned int g; unsigned long long f (unsigned int x) @@ -22,3 +23,6 @@ int main () abort (); exit (0); } +#else +int main () { exit (0); } +#endif |

