Don't replace multiple result of calls with undef,
authorChris Lattner <sabre@nondot.org>
Thu, 24 Apr 2008 00:19:54 +0000 (00:19 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 24 Apr 2008 00:19:54 +0000 (00:19 +0000)
sccp tracks getresult values, not call values in this
case.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50202 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SCCP.cpp

index bef13affd8b026e5bfd6974b2510c896e985fc6f..e849b2d876588893b87698b207a71a1be3240732 100644 (file)
@@ -1516,7 +1516,8 @@ bool SCCP::runOnFunction(Function &F) {
       //
       for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
         Instruction *Inst = BI++;
-        if (Inst->getType() == Type::VoidTy || 
+        if (Inst->getType() == Type::VoidTy ||
+            isa<StructType>(Inst->getType()) ||
             isa<TerminatorInst>(Inst))
           continue;
         
@@ -1692,7 +1693,8 @@ bool IPSCCP::runOnModule(Module &M) {
       } else {
         for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
           Instruction *Inst = BI++;
-          if (Inst->getType() != Type::VoidTy) {
+          if (Inst->getType() != Type::VoidTy &&
+              !isa<StructType>(Inst->getType())) {
             LatticeVal &IV = Values[Inst];
             if (IV.isConstant() ||
                 (IV.isUndefined() && !isa<TerminatorInst>(Inst))) {