diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-15 22:32:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-15 22:32:41 +0000 |
commit | 6e6808adafd7c8968e76054a8b3fc36b94242fc4 (patch) | |
tree | da56384a22ae3879af7df2b66e9d910686ed6665 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | |
parent | f691b829abecd66629e51a8868f8c2e829fb2b5e (diff) | |
download | bcm5719-llvm-6e6808adafd7c8968e76054a8b3fc36b94242fc4.tar.gz bcm5719-llvm-6e6808adafd7c8968e76054a8b3fc36b94242fc4.zip |
Change this from an assert to a cerr+exit, since it's diagnosing an
unsupported inline asm construct, rather than verifying a code invariant.
llvm-svn: 73435
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp index 93750d6b98c..48ebd0ff0d4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp @@ -5317,8 +5317,12 @@ void SelectionDAGLowering::visitInlineAsm(CallSite CS) { if ((OpFlag & 7) == 2 /*REGDEF*/ || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. - assert(!OpInfo.isIndirect && - "Don't know how to handle tied indirect register inputs yet!"); + if (OpInfo.isIndirect) { + cerr << "llvm: error: " + "Don't know how to handle tied indirect " + "register inputs yet!\n"; + exit(1); + } RegsForValue MatchedRegs; MatchedRegs.TLI = &TLI; MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |