[llvm-branch-commits] [llvm-branch] r80560 - /llvm/branches/release_26/include/llvm-c/Core.h

Tanya Lattner tonic at nondot.org
Sun Aug 30 23:43:16 PDT 2009


Author: tbrethou
Date: Mon Aug 31 01:43:15 2009
New Revision: 80560

URL: http://llvm.org/viewvc/llvm-project?rev=80560&view=rev
Log:
Merge from mainline.
Make sure we specify no arguments for context functions.

Modified:
    llvm/branches/release_26/include/llvm-c/Core.h

Modified: llvm/branches/release_26/include/llvm-c/Core.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_26/include/llvm-c/Core.h?rev=80560&r1=80559&r2=80560&view=diff

==============================================================================
--- llvm/branches/release_26/include/llvm-c/Core.h (original)
+++ llvm/branches/release_26/include/llvm-c/Core.h Mon Aug 31 01:43:15 2009
@@ -207,8 +207,8 @@
 /*===-- Modules -----------------------------------------------------------===*/
 
 /* Create and destroy contexts. */
-LLVMContextRef LLVMContextCreate();
-LLVMContextRef LLVMGetGlobalContext();
+LLVMContextRef LLVMContextCreate(void);
+LLVMContextRef LLVMGetGlobalContext(void);
 void LLVMContextDispose(LLVMContextRef C);
 
 /* Create and destroy modules. */ 





More information about the llvm-branch-commits mailing list