[llvm] 02c11c5 - [RISCV] Remove stale TODOs from RISCVISAInfo.cpp. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 25 18:01:47 PDT 2023


Author: Craig Topper
Date: 2023-07-25T17:47:48-07:00
New Revision: 02c11c5aed59624046125cf512c12f70d2fa358d

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

LOG: [RISCV] Remove stale TODOs from RISCVISAInfo.cpp. NFC

Q extension does not require RV64.
E extenion is not incompatible with F or D extensions.

Added: 
    

Modified: 
    llvm/lib/Support/RISCVISAInfo.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Support/RISCVISAInfo.cpp b/llvm/lib/Support/RISCVISAInfo.cpp
index 70fab801083109..f3d35ae4cd6aba 100644
--- a/llvm/lib/Support/RISCVISAInfo.cpp
+++ b/llvm/lib/Support/RISCVISAInfo.cpp
@@ -943,10 +943,6 @@ Error RISCVISAInfo::checkDependency() {
     return createStringError(errc::invalid_argument,
                              "'zcf' is only supported for 'rv32'");
 
-  // Additional dependency checks.
-  // TODO: The 'q' extension requires rv64.
-  // TODO: It is illegal to specify 'e' extensions with 'f' and 'd'.
-
   return Error::success();
 }
 


        


More information about the llvm-commits mailing list