[llvm] 02af13a - [RISCV] Simplify evaluateAsRelocatableImpl. NFC

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 18:21:02 PDT 2025


Author: Fangrui Song
Date: 2025-03-29T18:20:58-07:00
New Revision: 02af13aacb477d1f0a89375646f09b638055e3b9

URL: https://github.com/llvm/llvm-project/commit/02af13aacb477d1f0a89375646f09b638055e3b9
DIFF: https://github.com/llvm/llvm-project/commit/02af13aacb477d1f0a89375646f09b638055e3b9.diff

LOG: [RISCV] Simplify evaluateAsRelocatableImpl. NFC

RISCVMCExpr is not created with VK_None.

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
index 41408c156b8a5..73c24aa8a60bb 100644
--- a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
+++ b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
@@ -94,7 +94,7 @@ bool RISCVMCExpr::evaluateAsRelocatableImpl(MCValue &Res,
   Res.setSpecifier(specifier);
 
   // Custom fixup types are not valid with symbol 
diff erence expressions.
-  return Res.getSymB() ? getSpecifier() == VK_None : true;
+  return !Res.getSubSym();
 }
 
 void RISCVMCExpr::visitUsedExpr(MCStreamer &Streamer) const {


        


More information about the llvm-commits mailing list