Displaying 2 results from an estimated 2 matches for "18081d12".
Did you mean:
1081012
2016 Mar 28
0
Existing studies on the benefits of pointer analysis
...vm.org/cgi-bin/mailman/listinfo/llvm-dev
--
Hal Finkel
Assistant Computational Scientist
Leadership Computing Facility
Argonne National Laboratory
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160328/18081d12/attachment.html>
2016 Mar 28
4
Existing studies on the benefits of pointer analysis
On 03/28/2016 12:37 AM, Chris Lattner wrote:
> It changes all the time. Here’s a trivial example, assume no inlining
> and no AA other than the one in question:
>
> std::vector<int> V1 = { 1, 2, 3 };
> std::vector<int> V2 = { 4, 5, 6 };
>
> V1.pop_back(); // Mutates *this
>
> auto length = V1.size();
>
> V2.pop_back(); //