summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Molloy <james.molloy@arm.com>2012-02-16 09:48:07 +0000
committerJames Molloy <james.molloy@arm.com>2012-02-16 09:48:07 +0000
commit6afa3f744a57933aef57b94a8e7a7148065c432c (patch)
treee69ba729cd5bd022e4ee8a52f010def47b10b8fd
parent6660c05da33a93a011977454239cead97c3ff579 (diff)
downloadexternal_llvm-6afa3f744a57933aef57b94a8e7a7148065c432c.zip
external_llvm-6afa3f744a57933aef57b94a8e7a7148065c432c.tar.gz
external_llvm-6afa3f744a57933aef57b94a8e7a7148065c432c.tar.bz2
Remove extraneous #include and spelling mistake introduced in r150669.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150670 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/SelectionDAG/DAGCombiner.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index dbc173e..42940b2 100644
--- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -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 @@ namespace {
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);