"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "5e52c2862aa869c9db2b1aa578ef2ab633b0bc8c"
[ARM] support symbolic expressions as branch target in b.w
Currently ARM backend validates the range of branch targets before the layout of fragments is finalized. This causes build failure if symbolic expressions are used, with the exception of a single symbolic value. For example, "b.w ." works but "b.w . + 2" currently fails to assemble. This fixes the issue by delaying this check (in ARMAsmParser::validateInstruction) of b.w instructions until the symbol expressions are resolved (in ARMAsmBackend::adjustFixupValue). Link: https://github.com/ClangBuiltLinux/linux/issues/1286 Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D97568
Loading
Please register or sign in to comment