Deleted Added
full compact
Verifier.h (276479) Verifier.h (280031)
1//===- Verifier.h - LLVM IR Verifier ----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 63 unchanged lines hidden (view full) ---

72ModulePass *createDebugInfoVerifierPass(bool FatalErrors = true);
73
74class VerifierPass {
75 bool FatalErrors;
76
77public:
78 explicit VerifierPass(bool FatalErrors = true) : FatalErrors(FatalErrors) {}
79
1//===- Verifier.h - LLVM IR Verifier ----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 63 unchanged lines hidden (view full) ---

72ModulePass *createDebugInfoVerifierPass(bool FatalErrors = true);
73
74class VerifierPass {
75 bool FatalErrors;
76
77public:
78 explicit VerifierPass(bool FatalErrors = true) : FatalErrors(FatalErrors) {}
79
80 PreservedAnalyses run(Module *M);
81 PreservedAnalyses run(Function *F);
80 PreservedAnalyses run(Module &M);
81 PreservedAnalyses run(Function &F);
82
83 static StringRef name() { return "VerifierPass"; }
84};
85
86} // End llvm namespace
87
88#endif
82
83 static StringRef name() { return "VerifierPass"; }
84};
85
86} // End llvm namespace
87
88#endif