diff options
Diffstat (limited to 'llvm/lib/Transforms/IPO')
| -rw-r--r-- | llvm/lib/Transforms/IPO/Attributor.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp index a2ea0068bc0..ebe4fba0856 100644 --- a/llvm/lib/Transforms/IPO/Attributor.cpp +++ b/llvm/lib/Transforms/IPO/Attributor.cpp @@ -689,7 +689,7 @@ class AAReturnedValuesImpl : public AAReturnedValues, public AbstractState {    /// Mapping of values potentially returned by the associated function to the    /// return instructions that might return them. -  DenseMap<Value *, SmallSetVector<ReturnInst *, 4>> ReturnedValues; +  MapVector<Value *, SmallSetVector<ReturnInst *, 4>> ReturnedValues;    /// Mapping to remember the number of returned values for a call site such    /// that we can avoid updates if nothing changed. | 

