On Sun, 10 Oct 2004 23:25:54, YILMAZ YORU writes: >When I add a new proccedure to my application code this error occurs; >Is this the end of my codes ? :( > >"/cygdrive/c/DOCUME~1/YILMAZ/LOCALS~1/Temp/cc7SEX7w.s:22702: Error: >Signed .word overflow; switch may be too large; 33176 at 0x3d76 >make: *** [myapp.o] Error 1 " > > >What "Signed .word overflow" means ? I dont understood this.
Could be a branch offset too large to fit inside a word-sized signed integer. Do you have a large switch statement? Break it into halves, or try making it smaller (perhaps moving some ot the code into subroutines?). Do you have code at the beginning calling procedures near the end? Try moving the calling code or the called procedure towards the middle. etc. Ron Nicholson HotPaw Productions http://www.hotpaw.com/rhn/palm -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
