Displaying 2 results from an estimated 2 matches for "34f42542".
2015 Mar 05
2
[LLVMdev] Optimizing out redundant alloca involving byval params
Hello all,
I'm trying to find the pass that would convert from:
define void @main(%struct* byval %ptr) {
%val = load %struct* %ptr
%val.ptr = alloca %struct
store %struct %val, %struct* %val.ptr
call void @extern_func(%struct* byval %val.ptr)
ret void
}
to this:
define void @main(%struct* byval %ptr) {
call void @extern_func(%struct* byval %ptr)
ret void
}
First, am I missing
2015 Mar 06
2
[LLVMdev] Optimizing out redundant alloca involving byval params
...___
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150305/34f42542/attachment.html>