FLANG
BuiltinModules.h
1//===-- BuiltinModules.h --------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
10//
11//===----------------------------------------------------------------------===//
16//===----------------------------------------------------------------------===//
17
18#ifndef FORTRAN_LOWER_BUILTINMODULES_H
19#define FORTRAN_LOWER_BUILTINMODULES_H
20
23constexpr char cptrFieldName[] = "__address";
24} // namespace Fortran::lower::builtin
25
26#endif // FORTRAN_LOWER_BUILTINMODULES_H
Definition: BuiltinModules.h:21
constexpr char cptrFieldName[]
Address field name of __builtin_c_f_pointer and __builtin_c_ptr types.
Definition: BuiltinModules.h:23