Displaying 2 results from an estimated 2 matches for "i_extractvalu".
Did you mean:
i_extractvalue
2008 Jun 09
1
[LLVMdev] [patch] Missing instructions in llvm-c.
...on constants, to llvm-c.
Also:
1) There appears to be no way to create intrinsics via llvm-c. Is there?
2) The "extractvalue"[1] and "insertvalue"[2] instructions don't seem
to be addable via IRBuilder. Why?
Cheers,
-Mahadevan.
[1] http://www.llvm.org/docs/LangRef.html#i_extractvalue
[2] http://www.llvm.org/docs/LangRef.html#i_insertvalue
-------------- next part --------------
A non-text attachment was scrubbed...
Name: wrap_more_insts.patch
Type: text/x-diff
Size: 5551 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080609/75e2faf3/a...
2009 Feb 01
7
[LLVMdev] GEPping GEPs and first-class structs
As I understand it, first-class structs will allow structs to be passed as
function arguments and returned as results (i.e. multiple return values)
instead of passing pointers to structs. However, the GEP instruction only
handles pointer types. So I do not understand how you will be able to extract
the fields of a struct when it is received as a value type.
Will the GEP instruction be altered