mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
15 lines
306 B
C++
15 lines
306 B
C++
//
|
|
// Copyright (c) rev.ng Srls. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng-c/Decompiler/DLAPass.h"
|
|
|
|
char DLAPass::ID = 0;
|
|
|
|
using Register = llvm::RegisterPass<DLAPass>;
|
|
static Register X("dla", "Data Layout Analysis Pass", false, false);
|
|
|
|
bool DLAPass::runOnModule(llvm::Module &) {
|
|
return true;
|
|
}
|