commit 7749599d737d205a88bbb6fa755ba095d9b581fa Author: Gert Wollny Date: Mon Aug 15 17:15:43 2022 +0200 r600/sfn: Initialize out buffer when printing op 79ca456b4837b3bc21cf9ef3c03c505c4b4909f6 r600/sfn: rewrite NIR backend Closes: #7021 Signed-off-by: Gert Wollny Part-of: diff --git a/src/gallium/drivers/r600/sfn/sfn_instr_export.cpp b/src/gallium/drivers/r600/sfn/sfn_instr_export.cpp index 3d40ea1796a..00826ed6457 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr_export.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr_export.cpp @@ -206,7 +206,7 @@ bool WriteScratchInstr::do_ready() const void WriteScratchInstr::do_print(std::ostream& os) const { - char buf[6]; + char buf[6] = {0}; os << "WRITE_SCRATCH "; if (m_address)
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-04-10guix gc: Add '--list-roots'....* guix/scripts/gc.scm (show-help, %options): Add '--list-roots'. (guix-gc)[list-roots]: New procedure. Handle '--list-roots'. * tests/guix-gc.sh: Test it. * doc/guix.texi (Invoking guix gc): Document it. Ludovic Courtès
2018-03-27guix gc: Add '--derivers'....* guix/scripts/gc.scm (show-help, %options): Add '--derivers'. (guix-gc): Handle 'list-derivers'. * tests/guix-gc.sh: Add test. * doc/guix.texi (Invoking guix gc): Document it. Ludovic Courtès
2017-12-18guix gc: '--verify=foo' is reported as an error....Fixes <https://bugs.gnu.org/29761>. Reported by Martin Castillo <castilma@uni-bremen.de>. * guix/scripts/gc.scm (argument->verify-options): New procedure. (%options) ["verify"]: Adjust to use it. * tests/guix-gc.sh: Add test. Ludovic Courtès
2017-11-13tests: 'guix-gc.sh' passes even when 'out' or 'drv' are defined as env vars....This fixes a test failure exhibited by fb17a89912c2a3738dae716e30481c11e1c6f0ac whereby assignments to 'out' in guix-gc.sh would go to the 'out' environment variable, when it exists, which in turn prevents garbage collection of $out. * tests/guix-gc.sh: Add 'unset' invocations. Ludovic Courtès