blob: ea0899da13b13581ab468438be602cb2f63f2b74 [file] [log] [blame]
Nicolas Capensdaa5d912016-09-28 16:56:36 -04001// Copyright 2016 The SwiftShader Authors. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "LLVMRoutine.hpp"
16
Nicolas Capens1a3ce872018-10-10 10:42:36 -040017#include "ExecutableMemory.hpp"
Nicolas Capensc07dc4b2018-08-06 14:20:45 -040018#include "Thread.hpp"
Nicolas Capensdaa5d912016-09-28 16:56:36 -040019
Nicolas Capens48461502018-08-06 14:20:45 -040020namespace rr
Nicolas Capensdaa5d912016-09-28 16:56:36 -040021{
Logan Chien0eedc8c2018-08-21 09:34:28 +080022 LLVMRoutine::~LLVMRoutine()
23 {
24 dtor(reactorJIT, moduleKey);
25 }
Nicolas Capensdaa5d912016-09-28 16:56:36 -040026}