[llvm] [LLVM][rtsan] Add nonblocking Attribute and RealtimeSanitizer pass (PR #100596)
Chris Apple via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 25 10:16:49 PDT 2024
================
@@ -0,0 +1,35 @@
+//===--------- Definition of the RealtimeSanitizer class ---------*- C++
+//-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+//
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_REALTIMESANITIZER_H
+#define LLVM_TRANSFORMS_INSTRUMENTATION_REALTIMESANITIZER_H
+
+#include "llvm/IR/PassManager.h"
+#include "llvm/Transforms/Instrumentation/RealtimeSanitizerOptions.h"
+
+namespace llvm {
+
+struct RealtimeSanitizerOptions {};
----------------
cjappl wrote:
This is intentionally empty for now, as we anticipate having to add options very soon
https://github.com/llvm/llvm-project/pull/100596
More information about the llvm-commits
mailing list