Fix build warning.

llvm-svn: 80730
This commit is contained in:
Daniel Dunbar 2009-09-01 22:07:12 +00:00
parent ff0e622d1c
commit 2a275102d3
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ static void ReadProfilingBlock(const char *ToolName, FILE *F,
// Make sure we have enough space... The space is initialised to -1 to
// facitiltate the loading of missing values for OptimalEdgeProfiling.
if (Data.size() < NumEntries)
Data.resize(NumEntries, -1);
Data.resize(NumEntries, ~0U);
// Accumulate the data we just read into the data.
if (!ShouldByteSwap) {