load-module ( path -- module )


Vocabulary
llvm.reader

Inputs
patha string


Outputs
modulea module


Word description
Parses a file containing llvm bitcode into an llvm module.

Examples
USING: io.pathnames llvm.reader ; "resource:extra/llvm/wrappers/add.bc" absolute-path load-module
T{ module { value ALIEN: 1be7120 } }


Definition