redriver jiang <jiang.redri...@gmail.com> writes: > Hi, > > I meet a requirement to make all function calls to be indirect > function calling ( for I386 GCC compiler). I am not familiar with > frontend, so my first idea is
For x86-64 using the "large" code model (-mcmodel=large) will result in all function calls being indirect. If you want to do it for 32bit you could probably extend the implementation of this feature. -Andi