mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-15 05:29:45 +00:00
14 lines
694 B
Diff
14 lines
694 B
Diff
Index: llvm-toolchain_3.3~svn176083/polly/lib/CodeGen/LoopGenerators.cpp
|
|
===================================================================
|
|
--- llvm-toolchain_3.3~svn176083.orig/polly/lib/CodeGen/LoopGenerators.cpp 2013-02-05 19:01:29.000000000 +0100
|
|
+++ llvm-toolchain_3.3~svn176083/polly/lib/CodeGen/LoopGenerators.cpp 2013-02-26 15:11:09.000000000 +0100
|
|
@@ -203,7 +203,7 @@
|
|
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::pair<Value*, Value*>(OldValues[i], NewValue));
|
|
}
|
|
}
|
|
|