diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-03-24 04:39:54 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-03-24 04:39:54 +0000 |
commit | 85fdeb233ec445808ba72ecd980df9718b587e4a (patch) | |
tree | 21f2ce1ed97c4b05c5d386a09774cfbf8ac6ebdb /lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | c5132e65a6c198eac00591e13116042cee879c3f (diff) |
Remove comments that are now meaningless from the pattern ISels, at Chris's
request.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20804 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelPattern.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index abf9934f56..1965f7602a 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -1543,8 +1543,7 @@ void ISel::Select(SDOperand N) { unsigned Tmp1, Tmp2, Opc; unsigned opcode = N.getOpcode(); - // FIXME: Disable for our current expansion model! - if (/*!N->hasOneUse() &&*/ !ExprMap.insert(std::make_pair(N, notIn)).second) + if (!ExprMap.insert(std::make_pair(N, notIn)).second) return; // Already selected. SDNode *Node = N.Val; |