diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-10 23:56:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-10 23:56:08 +0000 |
commit | 183275a6279da7de436103d6a03ec2709dc137d1 (patch) | |
tree | 18f5f8b8c411518343832d0aeea2bd7faf82cf21 | |
parent | ac9dff686f1ba2871d4b2910d15f310d01757758 (diff) |
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
-rw-r--r-- | lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index 3c12fa1735..762a7bc665 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp @@ -1499,7 +1499,7 @@ void X86InstrInfo::copyRegToReg(MachineBasicBlock &MBB, return; } - cerr << "Not yet supported!"; + assert(0 && "Not yet supported!"); abort(); } |