[PATCH] D25914: Redo store splitting in CodeGenPrepare

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 23 15:14:30 PST 2016


chandlerc accepted this revision.
chandlerc added a comment.
This revision is now accepted and ready to land.

LGTM with a nit below.

I can send you a patch that tries to simplify the bitcast handling and see if you like that better. Seems much easier to explain with code.



================
Comment at: lib/CodeGen/CodeGenPrepare.cpp:5347
+
+  auto CreateSplittedStore = [&](Value *V, bool Upper) {
+    Type *Ty = Type::getIntNTy(SI.getContext(), HalfValBitSize);
----------------
CreateSplittedStore -> CreateSplitStore


Repository:
  rL LLVM

https://reviews.llvm.org/D25914





More information about the llvm-commits mailing list