search for: nullmodul

Displaying 2 results from an estimated 2 matches for "nullmodul".

Did you mean: nullmodule
2005 Oct 31
2
[LLVMdev] C Types -> LLVM Objects
...r - Load the types and functions out of this "null" module I'm thinking that a better solution would be to write some tool that takes the "null" bytecode and outputs a C++ file so I don't need to link my compiler with the bytecode reader, or be able to find the "nullmodule.bc" file. Are there any better ways to do this? Thanks, Evan Jones -- Evan Jones http://evanjones.ca/
2005 Oct 31
0
[LLVMdev] C Types -> LLVM Objects
...and functions out of this "null" module > > I'm thinking that a better solution would be to write some tool that takes > the "null" bytecode and outputs a C++ file so I don't need to link my > compiler with the bytecode reader, or be able to find the "nullmodule.bc" > file. Are there any better ways to do this? Unfortunately, I'm not aware of a better way to do this. If you care about a few specific functions, you can hard code them into the compiler. If you care about general functions or a large number of them, this is a reasonable app...