[llvm-commits] [llvm] r150670 - /llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

James Molloy james.molloy at arm.com
Thu Feb 16 01:48:07 PST 2012


Author: jamesm
Date: Thu Feb 16 03:48:07 2012
New Revision: 150670

URL: http://llvm.org/viewvc/llvm-project?rev=150670&view=rev
Log:
Remove extraneous #include and spelling mistake introduced in r150669.


Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=150670&r1=150669&r2=150670&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Thu Feb 16 03:48:07 2012
@@ -35,7 +35,6 @@
 #include "llvm/Support/MathExtras.h"
 #include "llvm/Support/raw_ostream.h"
 #include <algorithm>
-#include <set>
 using namespace llvm;
 
 STATISTIC(NodesCombined   , "Number of dag nodes combined");
@@ -101,7 +100,7 @@
     SDValue visit(SDNode *N);
 
   public:
-    /// AddToWorkList - Add to the work list making sure i'ts instance is at the
+    /// AddToWorkList - Add to the work list making sure its instance is at the
     /// back (next to be processed.)
     void AddToWorkList(SDNode *N) {
       WorkListContents.insert(N);





More information about the llvm-commits mailing list