Remove comments that are now meaningless from the pattern ISels, at Chris's
authorNate Begeman <natebegeman@mac.com>
Thu, 24 Mar 2005 04:39:54 +0000 (04:39 +0000)
committerNate Begeman <natebegeman@mac.com>
Thu, 24 Mar 2005 04:39:54 +0000 (04:39 +0000)
request.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20804 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Alpha/AlphaISelPattern.cpp
lib/Target/IA64/IA64ISelPattern.cpp
lib/Target/X86/X86ISelPattern.cpp

index abf9934f56e2ffa7da66314a673ab2ab174e8cb2..1965f7602a9ea49af5bc1806c06534c30c5ab9d4 100644 (file)
@@ -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;
index bbe1aba74bc4f5bc635b61e8f104cd2ffb03ef2b..ff7166eb07e0435f0d2324e1722154baf3a99ab3 100644 (file)
@@ -1416,8 +1416,7 @@ void ISel::Select(SDOperand N) {
   unsigned Tmp1, Tmp2, Opc;
   unsigned opcode = N.getOpcode();
 
-  // FIXME: Disable for our current expansion model!
-  if (/*!N->hasOneUse() &&*/ !LoweredTokens.insert(N).second)
+  if (!LoweredTokens.insert(N).second)
     return;  // Already selected.
 
   SDNode *Node = N.Val;
index 4ae21305b7b02a5bab76a2e4522fb9990aecdc44..2e5f91007c2e9f620cac4ae73d2a4132808874f5 100644 (file)
@@ -2723,8 +2723,7 @@ bool ISel::TryToFoldLoadOpStore(SDNode *Node) {
 void ISel::Select(SDOperand N) {
   unsigned Tmp1, Tmp2, Opc;
 
-  // FIXME: Disable for our current expansion model!
-  if (/*!N->hasOneUse() &&*/ !ExprMap.insert(std::make_pair(N, 1)).second)
+  if (!ExprMap.insert(std::make_pair(N, 1)).second)
     return;  // Already selected.
 
   SDNode *Node = N.Val;