[PATCH] D32872: [PowerPC] Leverage PGO data to version/expand small/large memcpy calls
Sean Fertile via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 14 11:53:45 PST 2017
sfertile added inline comments.
================
Comment at: lib/Target/PowerPC/PPCTargetTransformInfo.cpp:486
unsigned DestAlign) const {
- return Type::getInt64Ty(Context);
+ return VectorType::get(Type::getInt64Ty(Context),8);
}
----------------
I'm guessing this was meant to be a v2i64 instead of a v8i64
https://reviews.llvm.org/D32872
More information about the llvm-commits
mailing list