Path: blob/main/contrib/llvm-project/llvm/lib/MCA/View.cpp
35260 views
//===----------------------- View.cpp ---------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7/// \file8///9/// This file defines the virtual anchor method in View.h to pin the vtable.10///11//===----------------------------------------------------------------------===//1213#include "llvm/MCA/View.h"14#include "llvm/MC/MCInst.h"15#include "llvm/MC/MCSubtargetInfo.h"1617namespace llvm {18namespace mca {1920void View::anchor() {}2122} // namespace mca23} // namespace llvm242526