On Tue, 18 Mar 2008, Devang Patel wrote:>> Do you mean making Array Dependence Analysis a loop-level analysis? >> Would its results be available for some function-level pass then? > > We could extend pass manager framework to let function-level pass use > loop-level analysis info. However that is not ideal.I agree. I think the dependence analysis pass should be a FunctionPass. LoopPasses can use function passes, but not visaversa. -Chris -- http://nondot.org/sabre/ http://llvm.org/
How can I build the front-end to generate 16-bit integers?
> How can I build the front-end to generate 16-bit integers?Please clarify your question. If you are asking how to build llvm-gcc for a 16 bit target, I think the answer is: (1) gcc itself doesn't support 16 bit targets; (2) llvm doesn't currently support any 16 bit targets (but could with a little work). So you are out of luck unless you are willing to work on it. Ciao, Duncan.