Go to the documentation of this file.
15#ifndef LLVM_C_DEPRECATED_H
16#define LLVM_C_DEPRECATED_H
19# define __has_feature(x) 0
24#if __has_feature(attribute_deprecated_with_message)
25# define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
26 decl __attribute__((deprecated(message)))
27#elif defined(__GNUC__)
28# define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
29 decl __attribute__((deprecated))
30#elif defined(_MSC_VER)
31# define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \
32 __declspec(deprecated(message)) decl
34# define LLVM_ATTRIBUTE_C_DEPRECATED(decl, message) \