Displaying 3 results from an estimated 3 matches for "llvmint1type".
2008 May 01
2
[LLVMdev] Fixing prototypes in llvm-c/Core.h.
Hi,
The include file include/llvm-c/Core.h contains declarations
such as "LLVMTypeRef LLVMInt1Type();", which raises the
warning "function declaration isn't a prototype" when
using them in .c files.
Using "(void)" instead of "()" is the solution of course. Could
someone please:
sed -i~ 's/()/(void)/' Core.h
[Sorry to be picky, but so is my compil...
2008 May 04
0
[LLVMdev] Fixing prototypes in llvm-c/Core.h.
> The include file include/llvm-c/Core.h contains declarations
> such as "LLVMTypeRef LLVMInt1Type();", which raises the
> warning "function declaration isn't a prototype" when
> using them in .c files.
Can you please send a patch. See
http://llvm.org/docs/DeveloperPolicy.html#patches
Thanks,
Duncan.
2015 Aug 25
2
Problem with local context getType() == global context getType()
Hi,
I'm experiencing a weird problem with llvm 3.7(rc2/rc3) that did not occur
in llvm 3.6.2
I created a bug for it: https://llvm.org/bugs/show_bug.cgi?id=24521
I'm building a app where multiple code gen can happen in parallel. The
documentation state that I need to use separate context. Each thread has
it's own context.
When code generating a constant number I use the *InContext()