[PATCH] D29933: [RISCV 11/n] Initial codegen support for ALU operations
Pavel Šnobl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 8 12:10:30 PDT 2017
psnobl added inline comments.
================
Comment at: lib/Target/RISCV/RISCVISelLowering.cpp:61
+ MaxStoresPerMemcpy = MaxStoresPerMemcpyOptSize = 128;
+ MaxStoresPerMemmove = MaxStoresPerMemmoveOptSize = 128;
+}
----------------
Is there a special reason why the value is the same for both cases? I would expect to see much lower numbers for when we optimize for size - 16 for example.
https://reviews.llvm.org/D29933
More information about the llvm-commits
mailing list