search for: srcety

Displaying 3 results from an estimated 3 matches for "srcety".

Did you mean: src_ty
2008 Sep 22
0
[LLVMdev] Overzealous PromoteCastOfAllocation
On Sep 13, 2008, at 1:07 PM, Matthijs Kooijman wrote: > Hi Dan, > >> Changing PromoteCastOfAllocation to not replace aggregate allocas >> with >> non-aggregate allocas if they have GEP users sounds reasonable to me. > This sounds reasonable indeed, but still a bit arbitrary. Haven't > figured out > anything better yet, though. > >> Finding the
2008 Sep 13
3
[LLVMdev] Overzealous PromoteCastOfAllocation
Hi Dan, > Changing PromoteCastOfAllocation to not replace aggregate allocas with > non-aggregate allocas if they have GEP users sounds reasonable to me. This sounds reasonable indeed, but still a bit arbitrary. Haven't figured out anything better yet, though. > Finding the maximum alignment is sometimes still useful though, so > it would be nice to update the alignment field of
2008 Sep 23
3
[LLVMdev] Overzealous PromoteCastOfAllocation
...alar/InstructionCombining.cpp =================================================================== --- lib/Transforms/Scalar/InstructionCombining.cpp (revision 56433) +++ lib/Transforms/Scalar/InstructionCombining.cpp (working copy) @@ -8707,7 +8800,7 @@ break; } - if (SrcETy->isSingleValueType()) + if (SrcETy->isFirstClassType()) NewPtrTy = PointerType::getUnqual(SrcETy); } } -------------- next part -------------- Index: test/Transforms/InstCombine/2008-09-22-preserve-struct-alloca.ll ========================================================...