diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-14 13:57:57 -0800 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-19 13:18:43 -0800 |
commit | 8c48405069085a2c8b6b80816eda99e5dad31fc1 (patch) | |
tree | af6a315cb0f8eecea89547b692c07964b0238ba1 /llvm/include/llvm-c/Object.h | |
parent | 3a8104a9ea3d88fb4d0ef17185e420c814757bfd (diff) | |
download | bcm5719-llvm-8c48405069085a2c8b6b80816eda99e5dad31fc1.tar.gz bcm5719-llvm-8c48405069085a2c8b6b80816eda99e5dad31fc1.zip |
Wrap C APIs with pragmas enforcing -Werror=strict-prototypes
Force `-Werror=strict-prototypes` so that C API tests fail to compile if
we add a non-prototype declaration. This should help avoid regressions
like bddecba4b333f7772029b4937d2c34f9f2fda6ca was fixing.
https://reviews.llvm.org/D70285
rdar://problem/57203137
Diffstat (limited to 'llvm/include/llvm-c/Object.h')
-rw-r--r-- | llvm/include/llvm-c/Object.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/llvm/include/llvm-c/Object.h b/llvm/include/llvm-c/Object.h index 1e9b703a68f..9a9596aaa08 100644 --- a/llvm/include/llvm-c/Object.h +++ b/llvm/include/llvm-c/Object.h @@ -19,12 +19,11 @@ #ifndef LLVM_C_OBJECT_H #define LLVM_C_OBJECT_H +#include "llvm-c/ExternC.h" #include "llvm-c/Types.h" #include "llvm/Config/llvm-config.h" -#ifdef __cplusplus -extern "C" { -#endif +LLVM_C_EXTERN_C_BEGIN /** * @defgroup LLVMCObject Object file reading and writing @@ -226,8 +225,6 @@ LLVMBool LLVMIsSymbolIteratorAtEnd(LLVMObjectFileRef ObjectFile, * @} */ -#ifdef __cplusplus -} -#endif /* defined(__cplusplus) */ +LLVM_C_EXTERN_C_END #endif |