1//===------ LangOptions.cpp -----------------------------------------------===//
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//===----------------------------------------------------------------------===//
12
13#include "flang/Frontend/LangOptions.h"
14#include <string.h>
15
16namespace Fortran::frontend {
17
18LangOptions::LangOptions() {
19#define LANGOPT(Name, Bits, Default) Name = Default;
20#define ENUM_LANGOPT(Name, Type, Bits, Default) set##Name(Default);
21#include "flang/Frontend/LangOptions.def"
22}
23
24} // end namespace Fortran::frontend
25

source code of flang/lib/Frontend/LangOptions.cpp