Fix a layout pass debug message.

llvm-svn: 192942
This commit is contained in:
Rui Ueyama 2013-10-18 03:18:52 +00:00
parent 6a607b6a3b
commit 4050b20b04
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ bool LayoutPass::CompareAtoms::operator()(const DefinedAtom *left,
std::string reason;
bool result = compare(left, right, reason);
DEBUG({
StringRef comp = result ? "<" : ">";
StringRef comp = result ? "<" : ">=";
llvm::dbgs() << "Layout: '" << left->name() << "' " << comp << " '"
<< right->name() << "' (" << reason << ")\n";
});