Remove unnecessary explicit typing in std::make_pair
authorAndy Gibbs <andyg1001@hotmail.co.uk>
Wed, 20 Mar 2013 15:42:59 +0000 (15:42 +0000)
committerAndy Gibbs <andyg1001@hotmail.co.uk>
Wed, 20 Mar 2013 15:42:59 +0000 (15:42 +0000)
llvm-svn: 177528

polly/lib/CodeGen/LoopGenerators.cpp

index 6ba0e8d..6fc2157 100644 (file)
@@ -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));
   }
 }