Displaying 3 results from an estimated 3 matches for "llvmconvertmoduletoxxx".
2010 Sep 15
2
[LLVMdev] LLVM-C addition: LLVMConvertModuleToXXX
What do you guys/girls think about LLVM-C additions that are similar to the following:
char *
LLVMConvertModuleToC(LLVMModuleRef aModule);
Which creates the X-code for a given module (in this case for the language C).
- Filip
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Sep 16
0
[LLVMdev] LLVM-C addition: LLVMConvertModuleToXXX
Hi Filip,
> What do you guys/girls think about LLVM-C additions that are similar to the
> following:
as a meta-point, I thought llvm-c was supposed to be a binding, i.e. only
contain routines that map directly to existing C++ routines. Here you are
adding a bunch of logic that presumably doesn't exist in the C++ library.
As such, you should consider first adding a C++ helper function
2010 Sep 16
1
[LLVMdev] LLVM-C addition: LLVMConvertModuleToXXX
To get the cpp version, just remove the first line...
It just feels to me that the llvm-c version is the unwanted sibling. And I want to change it in a rapid tempo. To a fully equipped alternative.
-Filip
Sent from my iPad
On 16 Sep 2010, at 10:00, Duncan Sands <baldrick at free.fr> wrote:
> Hi Filip,
>
>> What do you guys/girls think about LLVM-C additions that are similar