Skip to content

Commit 04ab1eb

Browse files
committed
Updated to most recent llvm 17 version
1 parent 113d205 commit 04ab1eb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/udo/LLVMCompiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ struct JITDefinitionGenerator : public llvm::orc::DefinitionGenerator {
197197
// Register if found
198198
if (addr) {
199199
added.insert(name);
200-
newSymbols[name] = llvm::JITEvaluatedSymbol(static_cast<llvm::JITTargetAddress>(reinterpret_cast<uintptr_t>(addr)), llvm::JITSymbolFlags::Exported);
200+
newSymbols[name] = {llvm::orc::ExecutorAddr(reinterpret_cast<uintptr_t>(addr)), llvm::JITSymbolFlags::Exported};
201201
}
202202
}
203203
}

src/udo/i18n.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define H_udo_i18n
33
//---------------------------------------------------------------------------
44
#include <concepts>
5+
#include <cstdint>
56
#include <string>
67
#include <string_view>
78
#include "udo/StringLiteral.hpp"

0 commit comments

Comments
 (0)