1//===- X86ModRMFilters.cpp - Disassembler ModR/M filterss -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "X86ModRMFilters.h"
10
11using namespace llvm::X86Disassembler;
12
13void ModRMFilter::anchor() { }
14
15void DumbFilter::anchor() { }
16
17void ModFilter::anchor() { }
18
19void ExtendedFilter::anchor() { }
20
21void ExtendedRMFilter::anchor() { }
22
23void ExactFilter::anchor() { }
24