search for: r50620

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

Did you mean: 50620
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
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.