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 | |
11 | using namespace llvm::X86Disassembler; |
12 | |
13 | void ModRMFilter::anchor() {} |
14 | |
15 | void DumbFilter::anchor() {} |
16 | |
17 | void ModFilter::anchor() {} |
18 | |
19 | void ExtendedFilter::anchor() {} |
20 | |
21 | void ExtendedRMFilter::anchor() {} |
22 | |
23 | void ExactFilter::anchor() {} |
24 | |