[ConstantHoisting] remove a LLVM_DEBUG statement
authorNick Desaulniers <ndesaulniers@google.com>
Tue, 11 Jul 2023 16:27:33 +0000 (09:27 -0700)
committerNick Desaulniers <ndesaulniers@google.com>
Tue, 11 Jul 2023 16:30:15 +0000 (09:30 -0700)
commit631576561ee2d3907f8038dac50e08b266311e12
treeddac7fc700fcf889aa443afba9861a84cd2656fe
parent7ec844c881a23bf0d2e4450ac9ca97091490084f
[ConstantHoisting] remove a LLVM_DEBUG statement

There is no need to print the entire function after a transform via
LLVM_DEBUG statements.  These can be emulated via:
$ llc -print-after=consthoist -filter-print-funcs=<function name>

Otherwise, this makes the output of
$ llc -debug-only=consthoist
too verbose.

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D154904
llvm/lib/Transforms/Scalar/ConstantHoisting.cpp