diff --git a/llvm/include/llvm/ADT/Triple.h b/llvm/include/llvm/ADT/Triple.h index ba4584dc60faf..bd1a3acdf740a 100644 --- a/llvm/include/llvm/ADT/Triple.h +++ b/llvm/include/llvm/ADT/Triple.h @@ -859,10 +859,14 @@ class Triple { return getArch() == Triple::ppc64 || getArch() == Triple::ppc64le; } + /// Tests whether the target is 32-bit RISC-V. + bool isRISCV32() const { return getArch() == Triple::riscv32; } + + /// Tests whether the target is 64-bit RISC-V. + bool isRISCV64() const { return getArch() == Triple::riscv64; } + /// Tests whether the target is RISC-V (32- and 64-bit). - bool isRISCV() const { - return getArch() == Triple::riscv32 || getArch() == Triple::riscv64; - } + bool isRISCV() const { return isRISCV32() || isRISCV64(); } /// Tests whether the target is 32-bit SPARC (little and big endian). bool isSPARC32() const {