[llvm] [RISCV] Support .option {no}exact (PR #122483)

Sam Elliott via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 10:16:39 PDT 2025


================
@@ -344,6 +344,10 @@ std::pair<bool, bool> RISCVAsmBackend::relaxLEB128(const MCAssembler &Asm,
 // Given a compressed control flow instruction this function returns
 // the expanded instruction.
 unsigned RISCVAsmBackend::getRelaxedOpcode(unsigned Op) const {
+  // Disable relaxation if FeatureExactAssembly
+  if (STI.hasFeature(RISCV::FeatureExactAssembly))
----------------
lenary wrote:

Done

https://github.com/llvm/llvm-project/pull/122483


More information about the llvm-commits mailing list