Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into abadams/constant_inte…
Browse files Browse the repository at this point in the history
…rval_simplifier
  • Loading branch information
abadams committed Jun 2, 2024
2 parents 883a9da + 35143d2 commit b413bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/HalideRuntime.h
Original file line number Diff line number Diff line change
Expand Up @@ -1574,11 +1574,11 @@ typedef struct halide_buffer_t {
}
}

HALIDE_ALWAYS_INLINE bool host_dirty() const {
HALIDE_MUST_USE_RESULT HALIDE_ALWAYS_INLINE bool host_dirty() const {
return get_flag(halide_buffer_flag_host_dirty);
}

HALIDE_ALWAYS_INLINE bool device_dirty() const {
HALIDE_MUST_USE_RESULT HALIDE_ALWAYS_INLINE bool device_dirty() const {
return get_flag(halide_buffer_flag_device_dirty);
}

Expand Down

0 comments on commit b413bba

Please sign in to comment.