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