mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-27 11:55:49 +00:00
1f8790050b
Original-commit: flang-compiler/f18@9fe84f45d7 Reviewed-on: https://github.com/flang-compiler/f18/pull/1094
18 lines
636 B
C++
18 lines
636 B
C++
//===-- lib/Semantics/check-declarations.h ----------------------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Static declaration checks
|
|
|
|
#ifndef FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
|
|
#define FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
|
|
namespace Fortran::semantics {
|
|
class SemanticsContext;
|
|
void CheckDeclarations(SemanticsContext &);
|
|
} // namespace Fortran::semantics
|
|
#endif
|