mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
22 lines
516 B
C++
22 lines
516 B
C++
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/Clift/Clift.h"
|
|
#include "revng/Clift/CliftOpHelpers.h"
|
|
#include "revng/CliftTransforms/BooleanNegations.h"
|
|
#include "revng/CliftTransforms/ExpressionHelpers.h"
|
|
|
|
namespace clift = mlir::clift;
|
|
using namespace clift;
|
|
|
|
namespace {
|
|
|
|
#include "revng/CliftTransforms/BooleanNegations.h.inc"
|
|
|
|
} // namespace
|
|
|
|
void clift::populateWithBooleanNegationPatterns(mlir::RewritePatternSet &Set) {
|
|
populateWithGenerated(Set);
|
|
}
|