summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/LoopGenerators.cpp
diff options
context:
space:
mode:
authorAndy Gibbs <andyg1001@hotmail.co.uk>2013-03-20 15:42:59 +0000
committerAndy Gibbs <andyg1001@hotmail.co.uk>2013-03-20 15:42:59 +0000
commit36e6ca0143a62af7cfd12d18a4292521303192b4 (patch)
tree5d3d80e060ecd0c2e31096f9c4e3bbf4d9ccee44 /polly/lib/CodeGen/LoopGenerators.cpp
parent1a32a61ad4aac06949f8750930eb353f72c59759 (diff)
downloadbcm5719-llvm-36e6ca0143a62af7cfd12d18a4292521303192b4.tar.gz
bcm5719-llvm-36e6ca0143a62af7cfd12d18a4292521303192b4.zip
Remove unnecessary explicit typing in std::make_pair
llvm-svn: 177528
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp2
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));
}
}
OpenPOWER on IntegriCloud