rnk added inline comments. ================ Comment at: lib/CodeGen/LiveDebugValues.cpp:432-434 + if (MO.isKill()) + return true; + return false; ---------------- Probably simpler as `return MO.isKill();`. https://reviews.llvm.org/D41226