mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-22 20:20:03 +00:00
Be less stingy as to how many selects and phi nodes we
are prepared to look through. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2772ea831c
commit
5d8ea117a0
@ -79,8 +79,8 @@ Pass *llvm::createFunctionAttrsPass() { return new FunctionAttrs(); }
|
||||
/// memory that is local to the function. Global constants are considered
|
||||
/// local to all functions.
|
||||
bool FunctionAttrs::PointsToLocalMemory(Value *V) {
|
||||
SmallVector<Value*, 8> Worklist;
|
||||
unsigned MaxLookup = 4;
|
||||
SmallVector<Value*, 16> Worklist;
|
||||
unsigned MaxLookup = 8;
|
||||
|
||||
Worklist.push_back(V);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user