Home
last modified time | relevance | path

Searched defs:Verifier (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/VMCore/
DVerifier.cpp118 struct Verifier : public FunctionPass, public InstVisitor<Verifier> { struct
119 static char ID; // Pass ID, replacement for typeid
120 bool Broken; // Is this module found to be broken?
121 VerifierFailureAction action;
123 Module *Mod; // Module we are verifying right now
124 LLVMContext *Context; // Context within which we are verifying
125 DominatorTree *DT; // Dominator Tree, caution can be null!
127 std::string Messages;
128 raw_string_ostream MessagesStr;
134 SmallPtrSet<Instruction*, 16> InstsInThisBlock;
[all …]
/external/junit/src/org/junit/rules/
DVerifier.java28 public class Verifier implements TestRule { class