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