We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e531f commit dfed4b4Copy full SHA for dfed4b4
lib/Interpreter/CppInterOp.cpp
@@ -3606,7 +3606,11 @@ namespace Cpp {
3606
3607
if (addr) {
3608
loadedSymbols[symbol] =
3609
+#if CLANG_VERSION_MAJOR < 17
3610
+ JITEvaluatedSymbol(addr, JITSymbolFlags::Exported);
3611
+#else
3612
llvm::orc::ExecutorSymbolDef(llvm::orc::ExecutorAddr::fromPtr(addr), JITSymbolFlags::Exported);
3613
+#endif // CLANG_VERSION_MAJOR < 17
3614
} else {
3615
// Collect all failing symbols, delegate their responsibility and then
3616
// fail their materialization. R->defineNonExistent() sounds like it
0 commit comments