diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-04 13:30:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-02-04 13:30:28 +0000 |
commit | a5eb775c4d50e9d9a1225a75fb80d3b8a8043cab (patch) | |
tree | 0bcff7c067c276178307595125f7d7ff3762de05 /llvm/include/llvm-c | |
parent | 1d8ecbdffce64bef87723535b3c4a439340e9d8e (diff) | |
download | bcm5719-llvm-a5eb775c4d50e9d9a1225a75fb80d3b8a8043cab.tar.gz bcm5719-llvm-a5eb775c4d50e9d9a1225a75fb80d3b8a8043cab.zip |
Fix warning: "function declaration isn’t a prototype"
llvm-svn: 228139
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/lto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index 6df6e1716ad..1fe0cd5c75d 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/include/llvm-c/lto.h @@ -518,7 +518,7 @@ lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length); * \since LTO_API_VERSION=12 */ extern unsigned int -lto_api_version(); +lto_api_version(void); /** * Sets options to help debug codegen bugs. |