diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-27 19:03:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-27 19:03:22 +0000 |
commit | c4976c7377ca689e078e3ae1e768b74fa45791da (patch) | |
tree | 7b7d69b6b2702e3c7b5b11c977779729b63a9b4a /clang/lib/Frontend/PCHWriter.cpp | |
parent | 12d61d3253f550d2013863e2f7f1d2a53c5ea0b0 (diff) | |
download | bcm5719-llvm-c4976c7377ca689e078e3ae1e768b74fa45791da.tar.gz bcm5719-llvm-c4976c7377ca689e078e3ae1e768b74fa45791da.zip |
make these be unsigned now that they are eagerly created.
llvm-svn: 70229
Diffstat (limited to 'clang/lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHWriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Frontend/PCHWriter.cpp b/clang/lib/Frontend/PCHWriter.cpp index d8603dfb699..bb85b68b7e4 100644 --- a/clang/lib/Frontend/PCHWriter.cpp +++ b/clang/lib/Frontend/PCHWriter.cpp @@ -681,10 +681,10 @@ void PCHWriter::WriteSourceManagerBlock(SourceManager &SourceMgr, Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3); // Abbreviations for the various kinds of source-location entries. - int SLocFileAbbrv = CreateSLocFileAbbrev(Stream); - int SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream); - int SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream); - int SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream); + unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream); + unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream); + unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream); + unsigned SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream); // Write the line table. if (SourceMgr.hasLineTable()) { |