Skip to content

Commit

Permalink
Fix RISCV build after r318352
Browse files Browse the repository at this point in the history
Reviewers: asb, apazos, mgrang

Reviewed By: mgrang

Subscribers: rbar, johnrusso, simoncook, jordy.potman.lists, llvm-commits

Differential Revision: https://reviews.llvm.org/D40139

llvm-svn: 318437
  • Loading branch information
azharudd committed Nov 16, 2017
1 parent 433e8d3 commit fa8420d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
Expand Up @@ -24,7 +24,7 @@ Target &getTheRISCV64Target() {

extern "C" void LLVMInitializeRISCVTargetInfo() {
RegisterTarget<Triple::riscv32> X(getTheRISCV32Target(), "riscv32",
"32-bit RISC-V");
"32-bit RISC-V", "RISCV");
RegisterTarget<Triple::riscv64> Y(getTheRISCV64Target(), "riscv64",
"64-bit RISC-V");
"64-bit RISC-V", "RISCV");
}

0 comments on commit fa8420d

Please sign in to comment.