Print the current type.
Declared in <llvm/IR/Type.h>
void
print(
raw_ostream& O,
bool IsForDebug = false,
bool NoDetails = false) const;
Omit the type details if NoDetails == true. E.g., let %st = type { i32, i16 } When NoDetails is true, we only print %st. Put differently, NoDetails prints the type as if inlined with the operands when printing an instruction.
| Name | Description |
|---|---|
| O | Output stream. |
| IsForDebug | Whether to use debug-oriented printing. |
| NoDetails | If true, print only the type name without body details. |