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)
243 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
244 while (!Declare->use_empty()) {
245 CallInst *CI = cast<CallInst>(Declare->use_back());
248 Declare->eraseFromParent();
299 Function *Declare = M.getFunction("llvm.dbg.declare");
302 if (Declare) {
303 while (!Declare->use_empty()) {
304 CallInst *CI = cast<CallInst>(Declare->use_back());
319 Declare->eraseFromParent();