diff options
| author | Ted Kremenek <kremenek@apple.com> | 2007-11-13 00:25:37 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2007-11-13 00:25:37 +0000 |
| commit | e9b83bbd689a428733fde18b6283f87ad08d240c (patch) | |
| tree | c6646ca615e9d291cbc8659b6121ffd75129905f /clang/Basic/IdentifierTable.cpp | |
| parent | e7033b0356efc9350c8988c47bdad63f90c48c60 (diff) | |
| download | bcm5719-llvm-e9b83bbd689a428733fde18b6283f87ad08d240c.tar.gz bcm5719-llvm-e9b83bbd689a428733fde18b6283f87ad08d240c.zip | |
Renamed all serialization "Materialize" methods to "Create" to conform with
the new serialization API.
llvm-svn: 44035
Diffstat (limited to 'clang/Basic/IdentifierTable.cpp')
| -rw-r--r-- | clang/Basic/IdentifierTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Basic/IdentifierTable.cpp b/clang/Basic/IdentifierTable.cpp index f7f008220ff..c1830fa0ab5 100644 --- a/clang/Basic/IdentifierTable.cpp +++ b/clang/Basic/IdentifierTable.cpp @@ -432,7 +432,7 @@ void IdentifierTable::Emit(llvm::Serializer& S) const { S.ExitBlock(); } -IdentifierTable* IdentifierTable::Materialize(llvm::Deserializer& D) { +IdentifierTable* IdentifierTable::Create(llvm::Deserializer& D) { llvm::Deserializer::Location BLoc = D.getCurrentBlockLocation(); std::vector<char> buff; |

