mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
ebf6ab0be9
A pass that decorates memory accesses with information about CSV aliasing.
16 lines
366 B
C++
16 lines
366 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/BasicAnalyses/GeneratedCodeBasicInfo.h"
|
|
#include "revng/Support/revng.h"
|
|
|
|
class CSVAliasAnalysisPass : public llvm::PassInfoMixin<CSVAliasAnalysisPass> {
|
|
|
|
public:
|
|
llvm::PreservedAnalyses
|
|
run(llvm::Module &M, llvm::ModuleAnalysisManager &MAM);
|
|
};
|