We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 113d205 commit 04ab1ebCopy full SHA for 04ab1eb
src/udo/LLVMCompiler.cpp
@@ -197,7 +197,7 @@ struct JITDefinitionGenerator : public llvm::orc::DefinitionGenerator {
197
// Register if found
198
if (addr) {
199
added.insert(name);
200
- newSymbols[name] = llvm::JITEvaluatedSymbol(static_cast<llvm::JITTargetAddress>(reinterpret_cast<uintptr_t>(addr)), llvm::JITSymbolFlags::Exported);
+ newSymbols[name] = {llvm::orc::ExecutorAddr(reinterpret_cast<uintptr_t>(addr)), llvm::JITSymbolFlags::Exported};
201
}
202
203
src/udo/i18n.hpp
@@ -2,6 +2,7 @@
2
#define H_udo_i18n
3
//---------------------------------------------------------------------------
4
#include <concepts>
5
+#include <cstdint>
6
#include <string>
7
#include <string_view>
8
#include "udo/StringLiteral.hpp"
0 commit comments