1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Remove comments that are now meaningless from the pattern ISels, at Chris's

request.

llvm-svn: 20804
This commit is contained in:
Nate Begeman 2005-03-24 04:39:54 +00:00
parent 120bfecc01
commit 175a9f1cc6
3 changed files with 3 additions and 6 deletions

View 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;

View 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;

View 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;