diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:20:18 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:20:18 +0000 |
| commit | 0e9fa3a509995f59cadf5c4c398a69677372b442 (patch) | |
| tree | 3af0570c7e6d34f430e7cc9b5c84c79e48230020 | |
| parent | 16381517e390a17ec06cc9ac3ecddcf0bb6211f8 (diff) | |
| download | bcm5719-llvm-0e9fa3a509995f59cadf5c4c398a69677372b442.tar.gz bcm5719-llvm-0e9fa3a509995f59cadf5c4c398a69677372b442.zip | |
Deparameterize PATypeHolder
llvm-svn: 2099
| -rw-r--r-- | llvm/include/llvm/Transforms/MutateStructTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Transforms/MutateStructTypes.h b/llvm/include/llvm/Transforms/MutateStructTypes.h index 4ed74402eca..947606d1f5b 100644 --- a/llvm/include/llvm/Transforms/MutateStructTypes.h +++ b/llvm/include/llvm/Transforms/MutateStructTypes.h @@ -36,7 +36,7 @@ class MutateStructTypes : public Pass { std::map<const StructType*, TransformType> Transforms; // Mapping of old type to new types... - std::map<const Type *, PATypeHolder<Type> > TypeMap; + std::map<const Type *, PATypeHolder> TypeMap; // Mapping from global value of old type, to a global value of the new type... std::map<const GlobalValue*, GlobalValue*> GlobalMap; |

