Home | History | Annotate | Download | only in IPO

Lines Matching defs:Declare

118 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
119 "Strip all llvm.dbg.declare intrinsics", false, false)
244 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
245 while (!Declare->use_empty()) {
246 CallInst *CI = cast<CallInst>(Declare->use_back());
249 Declare->eraseFromParent();
300 Function *Declare = M.getFunction("llvm.dbg.declare");
303 if (Declare) {
304 while (!Declare->use_empty()) {
305 CallInst *CI = cast<CallInst>(Declare->use_back());
320 Declare->eraseFromParent();