Linked by Eugenia Loli-Queru on Sat 19th Nov 2005 08:26 UTC, submitted by resistor
General Development In an email to the GCC development mailing list, one of the main developers of LLVM revealed that his recent employment at Apple has been focused on integrating LLVM with GCC, and is now proposing a long-term merge of the two projects.
Permalink for comment 62160
To read all comments associated with this story, please click here.
RE: so, what is the significance?
by Anonymous on Sat 19th Nov 2005 09:37 UTC
Anonymous
Member since:
---

I guess you should try it. LLVM has the additional feature that you have optimizations which span several translation units.

It is able to produce bytecode and it has a virtual machine with a JIT compiler which executes in my experience not slower than native code.

Additionally you have the opurtunity to optimize delivered code based on real word profile data simply by optimizing the bytecode.

If a new optimizer is ready you can run it on your bytecode without compiling the whole project from scratch.