Revision 47378ee5bd7cb304be9d61e0a636982c8a2623d0 authored by Steven Johnson on 29 January 2024, 01:28:13 UTC, committed by GitHub on 29 January 2024, 01:28:13 UTC
* Upgrade clang-format and clang-tidy to use LLVM 17

* trigger buildbots

* trigger buildbots

* trigger buildbots

* trigger buildbots

* Enable `bugprone-switch-missing-default-case`

...and fix existing warnings.

* Update .clang-tidy

* Update Parameter.cpp

* Update .clang-tidy

* Update .clang-tidy

* Update .clang-tidy

* Update .clang-tidy

* Update CPlusPlusMangle.cpp
1 parent 4b2d211
Raw File
TrimNoOps.h
#ifndef TRIM_NO_OPS_H
#define TRIM_NO_OPS_H

/** \file
 * Defines a lowering pass that truncates loops to the region over
 * which they actually do something.
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Truncate loop bounds to the region over which they actually do
 * something. For examples see test/correctness/trim_no_ops.cpp */
Stmt trim_no_ops(Stmt s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top