Displaying 4 results from an estimated 4 matches for "kangkook".
Did you mean:
bangkok
2010 Jul 09
1
[LLVMdev] Preserving BBs of bitcode to target binary
...of 'test1' find their correspondents from 'test1.bc' and vice versa?
What I eventually want to find out is 1-1 mapping of BBs between llvm-bc and generated target binary.
If anyone can tell me how can I do this it will be very grateful.
Thanks for your help, in advance
Regards, Kangkook
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100709/860a29c6/attachment.html>
2011 May 31
2
[LLVMdev] How to identify LLVM version?
...M_28__
PHINode *PN = Builder.CreatePHI (Type::getDoubleTy(getGlobalContext()), "iftmp");
#else
assert ("wrong version");
#endif
I've been trying to find something like these (__LLVM_29__, __LLVM_28__), but I couldn't find them yet.
Thanks for your help.
Regard, Kangkook
2011 May 31
0
[LLVMdev] How to identify LLVM version?
Kangkook Jee <aixer77 at gmail.com> writes:
> Hi, all
>
> I'd like to write a code that can build different codes based on LLVM version.
> Like code snippets in the below.
>
> #ifdef __LLVM_29__
> PHINode *PN = Builder.CreatePHI (Type::getDoubleTy(getGlobalContext()), 2,...
2013 Jun 22
0
[LLVMdev] Outputting constant char array from llvm pass
...i8* getelementptr inbounds ([8 x i8]* @10, i32 0, i32 0)
However, what I want to implement instead is
i) identify the 1st argument is a constant character array
ii) if so, print out "hello, world\n"
Can anyone let me know how to implement this?
Thanks a lot for your help in advance!
/Kangkook