[llvm-commits] [llvm] r61020 - /llvm/trunk/lib/Analysis/ConstantFolding.cpp
Nick Lewycky
nicholas at mxc.ca
Sun Dec 14 17:35:36 PST 2008
Author: nicholas
Date: Sun Dec 14 19:35:36 2008
New Revision: 61020
URL: http://llvm.org/viewvc/llvm-project?rev=61020&view=rev
Log:
Fix whitespace in comment.
Remove TODO; icmp isn't a binary operator, so this function will never deal
with them.
Modified:
llvm/trunk/lib/Analysis/ConstantFolding.cpp
Modified: llvm/trunk/lib/Analysis/ConstantFolding.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ConstantFolding.cpp?rev=61020&r1=61019&r2=61020&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ConstantFolding.cpp (original)
+++ llvm/trunk/lib/Analysis/ConstantFolding.cpp Sun Dec 14 19:35:36 2008
@@ -87,7 +87,7 @@
/// 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 @@
}
}
- // TODO: Fold icmp setne/seteq as well.
return 0;
}
More information about the llvm-commits
mailing list