NewModule returns a new LLVM IR module.
()
| 60 | |
| 61 | // NewModule returns a new LLVM IR module. |
| 62 | func NewModule() *Module { |
| 63 | return &Module{ |
| 64 | NamedMetadataDefs: make(map[string]*metadata.NamedDef), |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | // String returns the string representation of the module in LLVM IR assembly |
| 69 | // syntax. |
no outgoing calls
searching dependent graphs…