diff options
| author | Sumant Kowshik <kowshik@uiuc.edu> | 2003-06-04 08:03:57 +0000 | 
|---|---|---|
| committer | Sumant Kowshik <kowshik@uiuc.edu> | 2003-06-04 08:03:57 +0000 | 
| commit | c318ca1a511d09c300fdfe2b3afb7efeab0252d3 (patch) | |
| tree | 0de8d6731954f431a498525e386973a42a6d6863 /llvm/include | |
| parent | 061d15551fbd10e538638cba18c4dcddb40d8ef5 (diff) | |
| download | bcm5719-llvm-c318ca1a511d09c300fdfe2b3afb7efeab0252d3.tar.gz bcm5719-llvm-c318ca1a511d09c300fdfe2b3afb7efeab0252d3.zip | |
Made changes suggested by Chris
llvm-svn: 6606
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/Transforms/PoolAllocate.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/include/llvm/Transforms/PoolAllocate.h b/llvm/include/llvm/Transforms/PoolAllocate.h index bf6e1707802..c3e1db2d65a 100644 --- a/llvm/include/llvm/Transforms/PoolAllocate.h +++ b/llvm/include/llvm/Transforms/PoolAllocate.h @@ -90,14 +90,14 @@ class PoolAllocate : public Pass {    EquivalenceClasses<Function *> FuncECs;    // Map from an Indirect CallInst to the set of Functions that it can point to -  map<CallInst *, vector<Function *> > CallInstTargets; +  std::multimap<CallInst *, Function *> CallInstTargets;    // This maps an equivalence class to the last pool argument number for that     // class. This is used because the pool arguments for all functions within    // an equivalence class is passed to all the functions in that class.    // If an equivalence class does not require pool arguments, it is not    // on this map. -  map<Function *, int> EqClass2LastPoolArg; +  std::map<Function *, int> EqClass2LastPoolArg;   public:    bool run(Module &M); | 

