Home | History | Annotate | Download | only in docs

Lines Matching full:insertvalue

2431 '``insertvalue``' instructions.
2968 ``insertvalue (VAL, ELT, IDX0, IDX1, ...)``
2969 Perform the :ref:`insertvalue operation <i_insertvalue>` on constants.
6708 '``insertvalue``' Instruction
6716 <result> = insertvalue <aggregate type> <val>, <ty> <elt>, <idx>{, <idx>}* ; yields <aggregate type>
6721 The '``insertvalue``' instruction inserts a value into a member field in
6727 The first operand of an '``insertvalue``' instruction is a value of
6747 %agg1 = insertvalue {i32, float} undef, i32 1, 0 ; yields {i32 1, float undef}
6748 %agg2 = insertvalue {i32, float} %agg1, float %val, 1 ; yields {i32 1, float %val}
6749 %agg3 = insertvalue {i32, {float}} undef, float %val, 1, 0 ; yields {i32 undef, {float %val}}