Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAG.cpp updated: 1.306 -> 1.307
---
Log message:

remove dead vars


---
Diffs of the changes:  (+1 -2)

 SelectionDAG.cpp |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.306 
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.307
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.306        Fri May 12 
12:03:46 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp      Fri May 12 13:04:28 2006
@@ -1539,7 +1539,7 @@
   // Perform various simplifications.
   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
-  ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
+  //ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
   switch (Opcode) {
   case ISD::SETCC: {
     // Use SimplifySetCC  to simplify SETCC's.
@@ -1696,7 +1696,6 @@
   default: break;
   }
   
-  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Ops[1].Val);
   switch (Opcode) {
   default: break;
   case ISD::TRUNCSTORE: {



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to