Path: blob/main/contrib/llvm-project/clang/lib/AST/Interp/InterpShared.h
35292 views
//===--- InterpShared.h -----------------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_CLANG_LIB_AST_INTERP_SHARED_H9#define LLVM_CLANG_LIB_AST_INTERP_SHARED_H1011#include "llvm/ADT/BitVector.h"1213namespace clang {14class FunctionDecl;15class Expr;1617namespace interp {1819llvm::BitVector collectNonNullArgs(const FunctionDecl *F,20const llvm::ArrayRef<const Expr *> &Args);2122} // namespace interp23} // namespace clang2425#endif262728