aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-07-20 22:52:28 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-07-20 22:52:28 +0000
commitf98bc5288e439f19bf919bc7cab889b94e1e26e6 (patch)
tree1892d6e329b896a2a543760dcd1e061224853a5e /llvm/lib
parent8472e0c4afdf5c4098e368af3e6dc2ffde3f6a9f (diff)
downloadllvm-f98bc5288e439f19bf919bc7cab889b94e1e26e6.zip
llvm-f98bc5288e439f19bf919bc7cab889b94e1e26e6.tar.gz
llvm-f98bc5288e439f19bf919bc7cab889b94e1e26e6.tar.bz2
Missing a space.
llvm-svn: 29233
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86RegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86RegisterInfo.cpp b/llvm/lib/Target/X86/X86RegisterInfo.cpp
index db78d9d..760d3ff 100644
--- a/llvm/lib/Target/X86/X86RegisterInfo.cpp
+++ b/llvm/lib/Target/X86/X86RegisterInfo.cpp
@@ -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;
}