[llvm] 30d7e21 - [MCA][RISCV] Mark one of the internal CustomBehavior functions static. NFC

Min-Yih Hsu via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 16:10:54 PST 2025


Author: Min-Yih Hsu
Date: 2025-02-27T16:07:52-08:00
New Revision: 30d7e21e4c7bc60e115e30464f9e1c2e7dfee4ec

URL: https://github.com/llvm/llvm-project/commit/30d7e21e4c7bc60e115e30464f9e1c2e7dfee4ec
DIFF: https://github.com/llvm/llvm-project/commit/30d7e21e4c7bc60e115e30464f9e1c2e7dfee4ec.diff

LOG: [MCA][RISCV] Mark one of the internal CustomBehavior functions static. NFC

This function is only used in the same file.

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp b/llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp
index 0881de90700ab..289f9aa51195d 100644
--- a/llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp
+++ b/llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp
@@ -205,7 +205,7 @@ getEEWAndEMUL(unsigned Opcode, RISCVVType::VLMUL LMUL, uint8_t SEW) {
   return std::make_pair(EEW, *EMUL);
 }
 
-bool opcodeHasEEWAndEMULInfo(unsigned short Opcode) {
+static bool opcodeHasEEWAndEMULInfo(unsigned short Opcode) {
   return Opcode == RISCV::VLM_V || Opcode == RISCV::VSM_V ||
          Opcode == RISCV::VLE8_V || Opcode == RISCV::VSE8_V ||
          Opcode == RISCV::VLE16_V || Opcode == RISCV::VSE16_V ||


        


More information about the llvm-commits mailing list