mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-13 01:46:06 +00:00

Summary: This patch introduces the skeleton of the constexpr interpreter, capable of evaluating a simple constexpr functions consisting of if statements. The interpreter is described in more detail in the RFC. Further patches will add more features. Reviewers: Bigcheese, jfb, rsmith Subscribers: bruno, uenoku, ldionne, Tyker, thegameg, tschuett, dexonsmith, mgorny, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D64146 llvm-svn: 371834
15 lines
464 B
C++
15 lines
464 B
C++
//===--- Frame.cpp - Call frame for the VM and AST Walker -------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Frame.h"
|
|
|
|
using namespace clang;
|
|
using namespace clang::interp;
|
|
|
|
Frame::~Frame() {}
|