constNull converts the given LLVM IR null pointer constant to a corresponding Go expression.
(c *constant.Null)
| 63 | // constNull converts the given LLVM IR null pointer constant to a corresponding |
| 64 | // Go expression. |
| 65 | func (d *decompiler) constNull(c *constant.Null) ast.Expr { |
| 66 | return ast.NewIdent("nil") |
| 67 | } |
| 68 | |
| 69 | // constVector converts the given LLVM IR vector constant to a corresponding Go |
| 70 | // expression. |