abort with an assert instead of a cerr to get line#

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-03-10 23:56:08 +00:00
parent ac9dff686f
commit 183275a627

View File

@ -1499,7 +1499,7 @@ void X86InstrInfo::copyRegToReg(MachineBasicBlock &MBB,
return;
}
cerr << "Not yet supported!";
assert(0 && "Not yet supported!");
abort();
}