[PATCH] D23557: [RISCV 1/10] Recognise riscv32 and riscv64 in triple parsing code
Ed Maste via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 26 18:07:06 PDT 2016
emaste added inline comments.
================
Comment at: lib/Support/Triple.cpp:1310
@@ -1293,2 +1309,3 @@
case Triple::sparc: T.setArch(Triple::sparcv9); break;
+ case Triple::riscv32: T.setArch(Triple::riscv64); break;
case Triple::x86: T.setArch(Triple::x86_64); break;
----------------
`break` misaligned here (but could just be phabricator's rendering)
https://reviews.llvm.org/D23557
More information about the llvm-commits
mailing list