Missing a space.

llvm-svn: 29233
This commit is contained in:
Evan Cheng 2006-07-20 22:52:28 +00:00
parent 8472e0c4af
commit f98bc5288e
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ namespace {
static bool TableIsSorted(const TableEntry *Table, unsigned NumEntries) {
for (unsigned i = 1; i != NumEntries; ++i)
if (!(Table[i-1] < Table[i])) {
std::cerr << "Entries out of order" << Table[i-1].from
std::cerr << "Entries out of order " << Table[i-1].from
<< " " << Table[i].from << "\n";
return false;
}