label converts the given LLVM IR basic block label to a corresponding Go identifier.
(name string)
| 505 | // label converts the given LLVM IR basic block label to a corresponding Go |
| 506 | // identifier. |
| 507 | func (d *decompiler) label(name string) *ast.Ident { |
| 508 | name = "block_" + name |
| 509 | return ident(name) |
| 510 | } |
| 511 | |
| 512 | // value converts the given LLVM IR value to a corresponding Go expression. |
| 513 | func (d *decompiler) value(v value.Value) ast.Expr { |
no test coverage detected