forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstub-evaluate.cpp
33 lines (29 loc) · 1.18 KB
/
stub-evaluate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//===-- tools/f18/stub-evaluate.cpp ---------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// The parse tree has slots in which pointers to the results of semantic
// analysis may be placed. When using the parser without the semantics
// libraries, as here, we need to stub out the dependences on the external
// destructors, which will never actually be called.
#include "flang/Common/indirection.h"
namespace Fortran::evaluate {
struct GenericExprWrapper {
~GenericExprWrapper();
};
GenericExprWrapper::~GenericExprWrapper() {}
struct GenericAssignmentWrapper {
~GenericAssignmentWrapper();
};
GenericAssignmentWrapper::~GenericAssignmentWrapper() {}
struct ProcedureRef {
~ProcedureRef();
};
ProcedureRef::~ProcedureRef() {}
} // namespace Fortran::evaluate
DEFINE_DELETER(Fortran::evaluate::GenericExprWrapper)
DEFINE_DELETER(Fortran::evaluate::GenericAssignmentWrapper)
DEFINE_DELETER(Fortran::evaluate::ProcedureRef)