Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/LinkageSpec.h

    r13073be rd55d7a6  
    2727                Overrideable = 1 << 2,
    2828                Builtin = 1 << 3,
    29                 GccBuiltin = 1 << 4,
    3029
    31                 NoOfSpecs = 1 << 5,
     30                NoOfSpecs = 1 << 4,
    3231        };
    3332
     
    3938                        bool is_overridable : 1;
    4039                        bool is_builtin : 1;
    41                         bool is_gcc_builtin : 1;
    4240                };
    4341                constexpr Spec( unsigned int val ) : val( val ) {}
     
    6361        inline bool isOverridable( Spec spec ) { return spec.is_overridable; }
    6462        inline bool isBuiltin( Spec spec ) { return spec.is_builtin; }
    65         inline bool isGccBuiltin( Spec spec ) { return spec.is_gcc_builtin; }
    6663
    6764        // Pre-defined flag combinations:
     
    7572        constexpr Spec const AutoGen = { Mangle | Generate | Overrideable };
    7673        // gcc internal
    77         constexpr Spec const Compiler = { Mangle | Builtin | GccBuiltin };
     74        constexpr Spec const Compiler = { Builtin };
    7875        // mangled builtins
    7976        constexpr Spec const BuiltinCFA = { Mangle | Generate | Builtin };
Note: See TracChangeset for help on using the changeset viewer.