mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-06-12 08:09:30 +00:00
aot_resolve_object_relocation_group: adapt to LLVM 16
This commit is contained in:
parent
344e74cee5
commit
9f3451cf9b
|
@ -3999,6 +3999,10 @@ aot_resolve_object_relocation_group(AOTObjectData *obj_data,
|
|||
|| str_starts_with(relocation->symbol_name, ".LJTI")
|
||||
|| str_starts_with(relocation->symbol_name, ".LBB")
|
||||
|| str_starts_with(relocation->symbol_name, ".Lswitch.table.")
|
||||
#if LLVM_VERSION_MAJOR >= 16
|
||||
/* cf. https://reviews.llvm.org/D123264 */
|
||||
|| str_starts_with(relocation->symbol_name, ".Lpcrel_hi")
|
||||
#endif
|
||||
#if LLVM_VERSION_MAJOR >= 19
|
||||
/* cf.
|
||||
* https://github.com/llvm/llvm-project/pull/95031
|
||||
|
|
Loading…
Reference in New Issue
Block a user