forked from OSchip/llvm-project
allow this to build when the #if 0's are enabled. No functionality change.
llvm-svn: 90999
This commit is contained in:
parent
f5cbb08c4b
commit
3ddf804f78
|
@ -1023,8 +1023,7 @@ static int AnalyzeLoadFromClobberingWrite(const Type *LoadTy, Value *LoadPtr,
|
|||
<< "Base = " << *StoreBase << "\n"
|
||||
<< "Store Ptr = " << *WritePtr << "\n"
|
||||
<< "Store Offs = " << StoreOffset << "\n"
|
||||
<< "Load Ptr = " << *LoadPtr << "\n"
|
||||
<< "Load Offs = " << LoadOffset << " - " << *L << "\n\n";
|
||||
<< "Load Ptr = " << *LoadPtr << "\n";
|
||||
abort();
|
||||
#endif
|
||||
return -1;
|
||||
|
@ -1055,10 +1054,7 @@ static int AnalyzeLoadFromClobberingWrite(const Type *LoadTy, Value *LoadPtr,
|
|||
<< "Base = " << *StoreBase << "\n"
|
||||
<< "Store Ptr = " << *WritePtr << "\n"
|
||||
<< "Store Offs = " << StoreOffset << "\n"
|
||||
<< "Load Ptr = " << *L->getPointerOperand() << "\n"
|
||||
<< "Load Offs = " << LoadOffset << " - " << *L << "\n\n";
|
||||
errs() << "'" << L->getParent()->getParent()->getName() << "'"
|
||||
<< *L->getParent();
|
||||
<< "Load Ptr = " << *LoadPtr << "\n";
|
||||
abort();
|
||||
#endif
|
||||
return -1;
|
||||
|
|
Loading…
Reference in New Issue