Missing a space.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29233 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-07-20 22:52:28 +00:00
parent e7bec0dbb5
commit 3c62934268

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;
}