aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/dsymutil/SwiftModule.h
blob: 9a272fd6fed36635b59853288345659420896e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//===- tools/dsymutil/SwiftModule.h ---------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_DSYMUTIL_SWIFTMODULE_H
#define LLVM_TOOLS_DSYMUTIL_SWIFTMODULE_H

#include "llvm/Support/Error.h"

llvm::Expected<bool> IsBuiltFromSwiftInterface(llvm::StringRef data);

#endif