forked from OSchip/llvm-project
If bugpoint can't match the reference output, at LEAST provide the output
we can get. llvm-svn: 11653
This commit is contained in:
parent
f44220efcf
commit
3aee2f04d9
|
@ -349,9 +349,13 @@ static void DisambiguateGlobalSymbols(Module *M) {
|
|||
|
||||
bool BugDriver::debugCodeGenerator() {
|
||||
if ((void*)cbe == (void*)Interpreter) {
|
||||
std::cout << "*** The C backend cannot match the reference diff, but it is "
|
||||
<< "used as the 'known good'\n code generator, so I can't deb"
|
||||
<< "ug it. Perhaps you have a front-end problem?\n";
|
||||
std::string Result = executeProgramWithCBE("bugpoint.cbe.out");
|
||||
std::cout << "\n*** The C backend cannot match the reference diff, but it "
|
||||
<< "is used as the 'known good'\n code generator, so I can't"
|
||||
<< " debug it. Perhaps you have a front-end problem?\n As a"
|
||||
<< " sanity check, I left the result of executing the program "
|
||||
<< "with the C backend\n in this file for you: '"
|
||||
<< Result << "'.\n";
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue