Change errs() to dbgs().

llvm-svn: 92648
This commit is contained in:
David Greene 2010-01-05 01:29:13 +00:00
parent dbdb1b28b8
commit 0041181684
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ X86Subtarget::X86Subtarget(const std::string &TT, const std::string &FS,
if (Is64Bit)
HasX86_64 = true;
DEBUG(errs() << "Subtarget features: SSELevel " << X86SSELevel
DEBUG(dbgs() << "Subtarget features: SSELevel " << X86SSELevel
<< ", 3DNowLevel " << X863DNowLevel
<< ", 64bit " << HasX86_64 << "\n");
assert((!Is64Bit || HasX86_64) &&