Experiments show that looking through phi nodes

and select instructions doesn't buy anything here
except extra complexity: the only difference in
the entire testsuite was that a readonly function
became readnone in MiBench/consumer-typeset.  Add
a comment about this.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61478 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-12-29 20:51:17 +00:00
parent e9dd47afa6
commit 2964fe37ae

View File

@ -64,6 +64,8 @@ bool AddReadAttrs::PointsToLocalMemory(Value *V) {
// A global constant counts as local memory for our purposes.
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
return GV->isConstant();
// Could look through phi nodes and selects here, but it doesn't seem
// to be useful in practice.
return false;
}