Displaying 3 results from an estimated 3 matches for "hamid2c".
Did you mean:
hamid
2011 May 31
2
[LLVMdev] multiple function return values in LLVM
Hi all,
How can I implement a multiple function return values scheme in a
performance efficient way, just like what be done in Matlab or Octave?
Thanks in advance,
Yabin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110531/5813e7a6/attachment.html>
2011 May 31
0
[LLVMdev] multiple function return values in LLVM
Hi Yabin,
Octave uses an octave_value_list object to return multiple values so I
don't think it has anything to do with the compiler.
A sample function that can be dynamically linked with Octave and
called from octave interpreter:
#include <octave/oct.h>
DEFUN_DLD (divmult, args, nargout, "") {
octave_value_list retval;
// do some computation to compute r0 and r1
2010 Dec 15
2
[LLVMdev] The best way to cope with AllocationInst type in old code?
Hi all,
I am working on some old code which was compiled against llvm-2.5.
Anyway, in some places I, AllocationInst is used (e.g. to ensure the
instruction's type). Even in your current documentation
(http://llvm.org/docs/ProgrammersManual.html), I found an example that
uses this instruction.
If I got it correctly, this istruction (AllocationInst) has been
removed from llvm instruction set.