This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
gcc 3.0: -m68000 -fpic generates invalid code
- To: gcc at gcc dot gnu dot org
- Subject: gcc 3.0: -m68000 -fpic generates invalid code
- From: "Alexander Aganichev" <AAganichev at hypercom dot com>
- Date: Sun, 15 Jul 2001 16:17:30 +0400
gcc 3.0 generates invalid code when -m68000 -fpic options given. Here is sample test:
test.c:
int foo(int a);
int foo2(int a) {
return foo(a);
}
The output from compiler contains `bsr.l' instruction which is not available on m68000.
Alexander