search for: 8b21ac8e

Displaying 2 results from an estimated 2 matches for "8b21ac8e".

2011 Aug 22
0
[LLVMdev] Accessing arguments in a caller
...n on SO, along with some (pseudo-) code to explain what I'm doing right now: http://stackoverflow.com/questions/7144733/argument-forwarding-in-llvm -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110822/8b21ac8e/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: cafxx.vcf Type: text/x-vcard Size: 230 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110822/8b21ac8e/attachment.vcf>
2011 Aug 21
2
[LLVMdev] Accessing arguments in a caller
What I can think of: 1. Anonymous struct, to avoid a copy. 2. Use stdarg.h...dangerous but accomplishes what you're looking for. 3. Split up F: giant switch statements often indicate that your function is doing several different things. (IMHO...) 4. Don't worry about it, it's probably not a bottleneck. (Or rather, profile first...) But no, there's no standard way to do this. Even