1*fe01014fSPatrick Holland //===----------------------- View.cpp ---------------------------*- C++ -*-===// 2*fe01014fSPatrick Holland // 3*fe01014fSPatrick Holland // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*fe01014fSPatrick Holland // See https://llvm.org/LICENSE.txt for license information. 5*fe01014fSPatrick Holland // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*fe01014fSPatrick Holland // 7*fe01014fSPatrick Holland //===----------------------------------------------------------------------===// 8*fe01014fSPatrick Holland /// \file 9*fe01014fSPatrick Holland /// 10*fe01014fSPatrick Holland /// This file defines the virtual anchor method in View.h to pin the vtable. 11*fe01014fSPatrick Holland /// 12*fe01014fSPatrick Holland //===----------------------------------------------------------------------===// 13*fe01014fSPatrick Holland 14*fe01014fSPatrick Holland #include "llvm/MCA/View.h" 15*fe01014fSPatrick Holland #include "llvm/MC/MCInst.h" 16*fe01014fSPatrick Holland #include "llvm/MC/MCSubtargetInfo.h" 17*fe01014fSPatrick Holland 18*fe01014fSPatrick Holland namespace llvm { 19*fe01014fSPatrick Holland namespace mca { 20*fe01014fSPatrick Holland anchor()21*fe01014fSPatrick Hollandvoid View::anchor() {} 22*fe01014fSPatrick Holland 23*fe01014fSPatrick Holland } // namespace mca 24*fe01014fSPatrick Holland } // namespace llvm 25