Lines Matching full:dead
1 //==- DeadStoresChecker.cpp - Check for stores to dead variables -*- C++ -*-==//
158 // when considering to suppress dead stores. Frequently stores
170 // where a bogus dead store can be reported because itself is unreachable.
185 BugType = "Dead initialization";
191 BugType = "Dead increment";
193 if (!BugType) BugType = "Dead assignment";
204 BR.EmitBasicReport(AC->getDecl(), Checker, BugType, "Dead store", os.str(),
214 // Reference types confuse the dead stores checker. Skip them
267 // Only cover dead stores from regular assignments. ++/-- dead stores
323 // Reference types confuse the dead stores checker. Skip them
342 // A dead initialization is a variable that is dead after it
392 // Driver function to invoke the Dead-Stores checker on a CFG.
430 // Proving that code in a template instantiation is "dead"
431 // means proving that it is dead in all instantiations.