устранение (исключение) мёртвого кода реализуемый в компиляторах метод оптимизации, направленный на уменьшение размера программы путём удаления кода, который никогда не будет исполняться Смотри также: code optimizer, dead code
(DCE) A compiler optimisation that detects dead code (code that will never be executed) and ignores it rather than blindly compiling it. DCE reduces the size of the resulting executable, saving space and load time.