Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clang/lib/Driver/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2823,7 +2823,7 @@ static bool runBundler(const SmallVectorImpl<StringRef> &BundlerArgs,
return !llvm::sys::ExecuteAndWait(BundlerBinary.get(), BundlerArgs);
}

bool hasFPGABinary(Compilation &C, std::string Object, types::ID Type) {
static bool hasFPGABinary(Compilation &C, std::string Object, types::ID Type) {
assert(types::isFPGA(Type) && "unexpected Type for FPGA binary check");
// Do not do the check if the file doesn't exist
if (!llvm::sys::fs::exists(Object))
Expand Down