diff options
author | Andy Gibbs <andyg1001@hotmail.co.uk> | 2013-03-20 15:42:59 +0000 |
---|---|---|
committer | Andy Gibbs <andyg1001@hotmail.co.uk> | 2013-03-20 15:42:59 +0000 |
commit | 36e6ca0143a62af7cfd12d18a4292521303192b4 (patch) | |
tree | 5d3d80e060ecd0c2e31096f9c4e3bbf4d9ccee44 | |
parent | 1a32a61ad4aac06949f8750930eb353f72c59759 (diff) | |
download | bcm5719-llvm-36e6ca0143a62af7cfd12d18a4292521303192b4.tar.gz bcm5719-llvm-36e6ca0143a62af7cfd12d18a4292521303192b4.zip |
Remove unnecessary explicit typing in std::make_pair
llvm-svn: 177528
-rw-r--r-- | polly/lib/CodeGen/LoopGenerators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp index 6ba0e8d4375..6fc2157f217 100644 --- a/polly/lib/CodeGen/LoopGenerators.cpp +++ b/polly/lib/CodeGen/LoopGenerators.cpp @@ -203,7 +203,7 @@ void OMPGenerator::extractValuesFromStruct( for (unsigned i = 0; i < OldValues.size(); i++) { Value *Address = Builder.CreateStructGEP(Struct, i); Value *NewValue = Builder.CreateLoad(Address); - Map.insert(std::make_pair<Value *, Value *>(OldValues[i], NewValue)); + Map.insert(std::make_pair(OldValues[i], NewValue)); } } |