[ORC-RT] Handle missing __has_builtin operator.
authorLang Hames <lhames@gmail.com>
Mon, 19 Jul 2021 10:17:40 +0000 (20:17 +1000)
committerLang Hames <lhames@gmail.com>
Mon, 19 Jul 2021 10:20:31 +0000 (20:20 +1000)
For compilers that do not support __has_builtin just return '0'. This should fix
the bot failure at https://lab.llvm.org/buildbot/#/builders/165/builds/3761.

compiler-rt/lib/orc/compiler.h

index fcc4f20..a262fb4 100644 (file)
 #define ORC_RT_INTERFACE extern "C" __attribute__((visibility("default")))
 #define ORC_RT_HIDDEN __attribute__((visibility("hidden")))
 
+#ifndef __has_builtin
+# define __has_builtin(x) 0
+#endif
+
 // Only use __has_cpp_attribute in C++ mode. GCC defines __has_cpp_attribute in
 // C mode, but the :: in __has_cpp_attribute(scoped::attribute) is invalid.
 #ifndef ORC_RT_HAS_CPP_ATTRIBUTE