Use appropriate index to get the result value.
authorDevang Patel <dpatel@apple.com>
Tue, 4 Mar 2008 19:22:54 +0000 (19:22 +0000)
committerDevang Patel <dpatel@apple.com>
Tue, 4 Mar 2008 19:22:54 +0000 (19:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47897 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/StructRetPromotion.cpp

index 2d1ddfb98d867123f48aaff3092bae7c21506aae..7ea85493ee8298db4503ef035ca5e4a6aa72c6c6 100644 (file)
@@ -302,7 +302,9 @@ void SRETPromotion::updateCallSites(Function *F, Function *NF) {
       if (C2 && (C2 == Call))
         continue;
       else if (GetElementPtrInst *UGEP = dyn_cast<GetElementPtrInst>(U2)) {
-        Value *GR = new GetResultInst(New, 5, "xxx", UGEP);
+        ConstantInt *Idx = dyn_cast<ConstantInt>(UGEP->getOperand(2));
+        assert (Idx && "Unexpected getelementptr index!");
+        Value *GR = new GetResultInst(New, Idx->getZExtValue(), "gr", UGEP);
         for (Value::use_iterator GI = UGEP->use_begin(),
                GE = UGEP->use_end(); GI != GE; ++GI) {
           if (LoadInst *L = dyn_cast<LoadInst>(*GI)) {