Re: String content not emitted

2008-04-16 Thread Andrew Haley
Boris Boesler wrote: > The following "program" can be compiled without problems. > > extern void something(char *s); > char msg[] = "123456"; > int main(int argc, char **argv) > { > something(msg); > return 0; > } > > But I can't compile it correctly with my backend. The content of msg is

String content not emitted

2008-04-16 Thread Boris Boesler
Hi! The following "program" can be compiled without problems. extern void something(char *s); char msg[] = "123456"; int main(int argc, char **argv) { something(msg); return 0; } But I can't compile it correctly with my backend. The content of msg is not emitted; there is only the label