Fix whitespace in comment.
authorNick Lewycky <nicholas@mxc.ca>
Mon, 15 Dec 2008 01:35:36 +0000 (01:35 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Mon, 15 Dec 2008 01:35:36 +0000 (01:35 +0000)
Remove TODO; icmp isn't a binary operator, so this function will never deal
with them.

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

lib/Analysis/ConstantFolding.cpp

index 597eecc1d2382a1c5cbb2f2141f91f9b9e4901e9..ea559c1010eac0927d1adb28a8e54889622c3bdd 100644 (file)
@@ -87,7 +87,7 @@ static bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV,
 
 
 /// SymbolicallyEvaluateBinop - One of Op0/Op1 is a constant expression.
-/// Attempt to symbolically evaluate the result of  a binary operator merging
+/// Attempt to symbolically evaluate the result of a binary operator merging
 /// these together.  If target data info is available, it is provided as TD, 
 /// otherwise TD is null.
 static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0,
@@ -113,7 +113,6 @@ static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0,
       }
   }
     
-  // TODO: Fold icmp setne/seteq as well.
   return 0;
 }