[NewGVN] Remove a (now stale) comment. NFCI.

llvm-svn: 309789
This commit is contained in:
Davide Italiano 2017-08-02 03:51:40 +00:00
parent 3246dc3df1
commit b13a3fa41b
1 changed files with 0 additions and 1 deletions

View File

@ -1824,7 +1824,6 @@ const Expression *NewGVN::performSymbolicCmpEvaluation(Instruction *I) const {
// Return true if V is a value that will always be available (IE can
// be placed anywhere) in the function. We don't do globals here
// because they are often worse to put in place.
// TODO: Separate cost from availability
static bool alwaysAvailable(Value *V) {
return isa<Constant>(V) || isa<Argument>(V);
}