projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac9dff6
)
abort with an assert instead of a cerr to get line#
author
Chris Lattner
<sabre@nondot.org>
Mon, 10 Mar 2008 23:56:08 +0000
(23:56 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 10 Mar 2008 23:56:08 +0000
(23:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48199
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86InstrInfo.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86InstrInfo.cpp
b/lib/Target/X86/X86InstrInfo.cpp
index 3c12fa17356134fd81082653dede6cf44da9e649..762a7bc66535b1f83d170967a972bfb8126bcd98 100644
(file)
--- 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();
}