search for: 23aefbb1

Displaying 2 results from an estimated 2 matches for "23aefbb1".

2012 Feb 29
0
[LLVMdev] Is it an opt bug ?
...>> http://lists.cs.uiuc.edu/**mailman/listinfo/llvmdev<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev> >> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120229/23aefbb1/attachment.html>
2012 Feb 29
2
[LLVMdev] Is it an opt bug ?
Hi Seb, > If I remove datalayout definition, code is not optimized and work as expected. > So my question is: > > What attribute/value/interpretation of data-layout would cause this type of bug? all kinds of optimizers use datalayout (and are disabled if there is none). For example, alias analysis, anything that needs to understand getelementptr offsets, the list is endless. I