Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / ExpressionParser / Clang / ClangHost.h
blobd6809909a62590f053c439114b40716a742896e2
1 //===-- ClangHost.h ---------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
10 #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGHOST_H
12 namespace lldb_private {
14 class FileSpec;
16 bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec,
17 FileSpec &file_spec, bool verify);
19 FileSpec GetClangResourceDir();
21 } // namespace lldb_private
23 #endif