HomeSort by: relevance | last modified time | path
    Searched refs:BrokenDebugInfo (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Verifier.h 96 /// \return true if the module is broken. If BrokenDebugInfo is
98 /// error and instead *BrokenDebugInfo will be set to true. Debug
101 bool *BrokenDebugInfo = nullptr);
125 bool verifyModule(bool &BrokenDebugInfo, const Module &M, raw_ostream *OS);
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOCodeGenerator.cpp 486 bool BrokenDebugInfo = false;
487 if (verifyModule(*MergedModule, &dbgs(), &BrokenDebugInfo))
489 if (BrokenDebugInfo) {
ThinLTOCodeGenerator.cpp 177 bool BrokenDebugInfo = false;
178 if (verifyModule(TheModule, &dbgs(), &BrokenDebugInfo))
180 if (BrokenDebugInfo) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 136 bool BrokenDebugInfo = false;
263 BrokenDebugInfo = true;
357 bool hasBrokenDebugInfo() const { return BrokenDebugInfo; }
2667 if (BrokenDebugInfo)
5730 bool *BrokenDebugInfo) {
5732 Verifier V(OS, /*ShouldTreatBrokenDebugInfoAsError=*/!BrokenDebugInfo, M);
5739 if (BrokenDebugInfo)
5740 *BrokenDebugInfo = V.hasBrokenDebugInfo();
AutoUpgrade.cpp 4032 bool BrokenDebugInfo = false;
4033 if (verifyModule(M, &llvm::errs(), &BrokenDebugInfo))
4035 if (!BrokenDebugInfo)

Completed in 24 milliseconds