1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Minor code simplification.

llvm-svn: 95780
This commit is contained in:
Dan Gohman 2010-02-10 15:54:22 +00:00
parent 0a0f0f6465
commit fd8f55bc9e

View File

@ -412,8 +412,7 @@ namespace llvm {
}
virtual bool hasComputableLoopEvolution(const Loop *QL) const {
if (L == QL) return true;
return false;
return L == QL;
}
virtual bool isLoopInvariant(const Loop *QueryLoop) const;