forked from OSchip/llvm-project
				
			make these be unsigned now that they are eagerly created.
llvm-svn: 70229
This commit is contained in:
		
							parent
							
								
									12d61d3253
								
							
						
					
					
						commit
						c4976c7377
					
				| 
						 | 
					@ -681,10 +681,10 @@ void PCHWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
 | 
				
			||||||
  Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3);
 | 
					  Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Abbreviations for the various kinds of source-location entries.
 | 
					  // Abbreviations for the various kinds of source-location entries.
 | 
				
			||||||
  int SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
 | 
					  unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
 | 
				
			||||||
  int SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
 | 
					  unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
 | 
				
			||||||
  int SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
 | 
					  unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
 | 
				
			||||||
  int SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream);
 | 
					  unsigned SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Write the line table.
 | 
					  // Write the line table.
 | 
				
			||||||
  if (SourceMgr.hasLineTable()) {
 | 
					  if (SourceMgr.hasLineTable()) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue