From: Torok Edwin Date: Sun, 16 Nov 2008 17:21:25 +0000 (+0000) Subject: If SI->size() is 0, we are not allowed to dereference ->begin(). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b079a391c8b85d088dabce715d99be5917af88fa;p=oota-llvm.git If SI->size() is 0, we are not allowed to dereference ->begin(). This fixed PR3078. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59416 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp index d66e2c46202..00d06bab154 100644 --- a/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -565,9 +565,11 @@ Function *ArgPromotion::DoPromotion(Function *F, // Add a parameter to the function for each element passed in. for (ScalarizeTable::iterator SI = ArgIndices.begin(), E = ArgIndices.end(); SI != E; ++SI) { + unsigned num = SI->size(); + // not allowed to dereference ->begin() if size() is 0 Params.push_back(GetElementPtrInst::getIndexedType(I->getType(), - &*SI->begin(), - SI->size())); + num ? &*SI->begin(): 0, + num)); assert(Params.back()); }