search for: cab6dd7a

Displaying 2 results from an estimated 2 matches for "cab6dd7a".

2011 Oct 27
0
[LLVMdev] Resolving sizeof's; target triples; type optimizations
Hello > In doing this, I'm essentially overriding any "target triple" existing in > the IR, breaking up the process into a multi-stage operation (llvm-gcc, opt > and llc running independently) and picking whatever target I want, right? No. This won't work since, as indicated in the FAQ entry IR derived from C/C++ is not target neutral, so you cannot 'just'
2011 Oct 27
2
[LLVMdev] Resolving sizeof's; target triples; type optimizations
Thanks for the answers. > See http://llvm.org/docs/FAQ.html#platformindependent . If you're > dealing with C code, it isn't too hard to add a new target to clang; > send an email to cfe-dev if you need help with that. The "target > datalayout" information is purely a hint to the optimizers. My experience this far has been mainly with using llvm-gcc and llvmc,