[llvm] [Asan] Provide TTI hook to provide memory reference infromation of target intrinsics. (PR #97070)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 23 15:32:42 PDT 2024
================
@@ -0,0 +1,53 @@
+//===--------- Definition of the MemoryRefInfo 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines MemoryRefInfo class that is used when getting
+// the information of a memory reference instruction.
+//
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_SUPPORT_MEMORYREFINFO_H
----------------
topperc wrote:
This file is Analysis, this should be `LLVM_ANALYSIS_MEMORYREFINFO_H`
https://github.com/llvm/llvm-project/pull/97070
More information about the llvm-commits
mailing list