[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Nate Begeman natebegeman at mac.com
Fri Jan 13 19:18:39 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.124 -> 1.125
---
Log message:

Remove some duplicated code


---
Diffs of the changes:  (+0 -8)

 SelectionDAGISel.cpp |    8 --------
 1 files changed, 8 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.124 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.125
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.124	Fri Jan 13 21:14:10 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Fri Jan 13 21:18:27 2006
@@ -990,15 +990,7 @@
     return 0;
   }
   case Intrinsic::bswap_i16:
-    setValue(&I, DAG.getNode(ISD::BSWAP,
-                             getValue(I.getOperand(1)).getValueType(),
-                             getValue(I.getOperand(1))));
-    return 0;
   case Intrinsic::bswap_i32:
-    setValue(&I, DAG.getNode(ISD::BSWAP,
-                             getValue(I.getOperand(1)).getValueType(),
-                             getValue(I.getOperand(1))));
-    return 0;
   case Intrinsic::bswap_i64:
     setValue(&I, DAG.getNode(ISD::BSWAP,
                              getValue(I.getOperand(1)).getValueType(),






More information about the llvm-commits mailing list