Path: blob/main/contrib/llvm-project/clang/lib/AST/ByteCode/InterpShared.h
213799 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 "clang/Basic/LLVM.h"12#include "llvm/ADT/BitVector.h"1314namespace clang {15class FunctionDecl;16class Expr;1718namespace interp {1920llvm::BitVector collectNonNullArgs(const FunctionDecl *F,21ArrayRef<const Expr *> Args);2223} // namespace interp24} // namespace clang2526#endif272829