dibyendumajumdar / dmr_c

dmr_C is a C parser and JIT compiler with LLVM, Eclipse OMR and NanoJIT backends
Other
52 stars 2 forks source link

Change the LLVM api to accept a Module #19

Closed dibyendumajumdar closed 7 years ago

dibyendumajumdar commented 7 years ago

Allowing the user to create the LLVM module is important to allow the user to add additional stuff to the module. So it is better to accept the Module as a parameter rather than creating it within the API.

dibyendumajumdar commented 7 years ago

Implemented