"M R Swami Reddy" <MR.Swami.Reddy@xxxxxxx> writes: > I am building a cross compiler using gcc-4.4.0 release sources. > During the build, below error seen with dojump.c file: > == > gcc/dojump.c: In function âdo_jumpâ: > gcc/dojump.c:520: error: called object â2â is not a function > gcc/dojump.c:543: error: called object â2â is not a function > make: *** [dojump.o] Error 1 > == You didn't mention the target; I assume this is a private port. I would guess a bug in the definition of BRANCH_COST. Note that BRANCH_COST used to be a simple value, but now it is a macro with two arguments. I think you could have spotted this yourself by looking at the lines in question. Ian