Home | History | Annotate | Download | only in Basic
      1 //===--- LangOptions.cpp - C Language Family Language Options ---*- C++ -*-===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 //
     10 //  This file defines the LangOptions class.
     11 //
     12 //===----------------------------------------------------------------------===//
     13 #include "clang/Basic/LangOptions.h"
     14 
     15 using namespace clang;
     16 
     17 LangOptions::LangOptions() {
     18 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
     19 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
     20 #include "clang/Basic/LangOptions.def"
     21 }
     22 
     23 void LangOptions::resetNonModularOptions() {
     24 #define LANGOPT(Name, Bits, Default, Description)
     25 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
     26 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
     27   Name = Default;
     28 #include "clang/Basic/LangOptions.def"
     29 
     30   CurrentModule.clear();
     31 }
     32 
     33