Jarkko Hietaniemi (via RT) wrote:
cc: Info: imcc/pcc.c, line 379: In this statement, an array is being accessed o\ utside the bounds specified for the array type. (subscrbounds)^ regs[2] = arg;^ -----------------
nice compiler
And sure enough, regs has been declared as two-element array: SymReg *arg, *sub, *reg, *regs[2]; Assiging to the third elements is bound to be deadly.
Yeah, thanks. Can you 'svn ci' such kind of errors directly, please, if possible, or are you still lacking commit rights?
Anyway, fixed in r9324 leo