Go to the documentation of this file.
13#ifndef MLIR_EXECUTIONENGINE_MSAN_H
14#define MLIR_EXECUTIONENGINE_MSAN_H
21#define __has_feature(x) 0
24#if __has_feature(memory_sanitizer) && !defined(MLIR_MEMORY_SANITIZER)
25#define MLIR_MEMORY_SANITIZER
28#if defined(MLIR_MEMORY_SANITIZER)
29#include <sanitizer/msan_interface.h>
30#define MLIR_MSAN_MEMORY_IS_INITIALIZED(p, s) __msan_unpoison((p), (s))
32#define MLIR_MSAN_MEMORY_IS_INITIALIZED(p, s)