This is a problem with the GCC compiler -- your switch statement's generating so much code that the compiler can't emit a relative branch instruction that will reach from the top of the switch to one of the conditions. Try refactoring your code so some of the switch bodies are in different functions.
On 4/5/06, ssuresh <[EMAIL PROTECTED]> wrote: > Hi, > > Running on PODS1.1. > more than ten lines in eight swich case, when i comment some lines, it works. > But more than ten lines, it gives error. > > -- > For information on using the PalmSource Developer Forums, or to unsubscribe, > please see http://www.palmos.com/dev/support/forums/ > -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
