xref: /freebsd-src/contrib/llvm-project/clang/lib/AST/Interp/Frame.cpp (revision 5b27928474e6a4103d65b347544705c40c9618fd)
1*a7dea167SDimitry Andric //===--- Frame.cpp - Call frame for the VM and AST Walker -------*- C++ -*-===//
2*a7dea167SDimitry Andric //
3*a7dea167SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*a7dea167SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*a7dea167SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*a7dea167SDimitry Andric //
7*a7dea167SDimitry Andric //===----------------------------------------------------------------------===//
8*a7dea167SDimitry Andric 
9*a7dea167SDimitry Andric #include "Frame.h"
10*a7dea167SDimitry Andric 
11*a7dea167SDimitry Andric using namespace clang;
12*a7dea167SDimitry Andric using namespace clang::interp;
13*a7dea167SDimitry Andric 
~Frame()14*a7dea167SDimitry Andric Frame::~Frame() {}
15