================ @@ -0,0 +1,45 @@ +//===-- OutOfProcessJITConfig.h - Struct for Out-Of-Process JIT--*- 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 +// +//===----------------------------------------------------------------------===// +// +// This file defines a struct that holds configuration options for +// out-of-process JIT execution. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_INTERPRETER_OUTOFPROCESSJITCONFIG_H +#define LLVM_CLANG_INTERPRETER_OUTOFPROCESSJITCONFIG_H + +#include <functional> +#include <string> +#include <utility> + +namespace clang { + +/// \brief Configuration options for out-of-process JIT execution. +struct OutOfProcessJITConfig { ---------------- kr-2003 wrote:
done https://github.com/llvm/llvm-project/pull/155140 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits