[#HANDLE_UNARY_INST-00] = HANDLE_UNARY_INST :mrdocs: Declare a Create helper with an explicit insertion point for one unary opcode. == Synopsis Declared in `<llvm/IR/InstrTypes.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- #define HANDLE_UNARY_INST(N, OPC, CLASS) ---- == Description These methods just forward to Create, and are useful when you statically know what type of instruction you're going to create. These helpers just save some typing. == Parameters [cols="1,4"] |=== | Name| Description | *N* | The opcode enumeration value. | *OPC* | The opcode name token used to form Create##OPC. | *CLASS* | The instruction class for this opcode. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#