forked from OSchip/llvm-project
Fix a typo with -fno-double-square-bracket-attributes and add a test to demonstrate that it works as expected in C++11 mode. Additionally corrected the handling of -fdouble-square-bracket-attributes to be properly passed down to the cc1 option.
llvm-svn: 316275
This commit is contained in:
parent
3cb024490a
commit
6173655639
|
@ -613,8 +613,8 @@ def fasynchronous_unwind_tables : Flag<["-"], "fasynchronous-unwind-tables">, Gr
|
|||
def fdouble_square_bracket_attributes : Flag<[ "-" ], "fdouble-square-bracket-attributes">,
|
||||
Group<f_Group>, Flags<[DriverOption, CC1Option]>,
|
||||
HelpText<"Enable '[[]]' attributes in all C and C++ language modes">;
|
||||
def fno_double_square_bracket_attributes : Flag<[ "-" ], "fno-fdouble-square-bracket-attributes">,
|
||||
Group<f_Group>, Flags<[DriverOption]>,
|
||||
def fno_double_square_bracket_attributes : Flag<[ "-" ], "fno-double-square-bracket-attributes">,
|
||||
Group<f_Group>, Flags<[DriverOption, CC1Option]>,
|
||||
HelpText<"Disable '[[]]' attributes in all C and C++ language modes">;
|
||||
|
||||
def fautolink : Flag <["-"], "fautolink">, Group<f_Group>;
|
||||
|
|
|
@ -4010,6 +4010,9 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
CmdArgs.push_back("-fcoroutines-ts");
|
||||
}
|
||||
|
||||
Args.AddLastArg(CmdArgs, options::OPT_fdouble_square_bracket_attributes,
|
||||
options::OPT_fno_double_square_bracket_attributes);
|
||||
|
||||
bool HaveModules = false;
|
||||
RenderModulesOptions(C, D, Args, Input, Output, CmdArgs, HaveModules);
|
||||
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
// RUN: %clang_cc1 -fsyntax-only -fno-double-square-bracket-attributes -verify -pedantic -std=c++11 -DERRORS %s
|
||||
// RUN: %clang_cc1 -fsyntax-only -fdouble-square-bracket-attributes -verify -pedantic -std=c++11 %s
|
||||
|
||||
struct [[]] S {};
|
||||
|
||||
#ifdef ERRORS
|
||||
// expected-error@-3 {{declaration of anonymous struct must be a definition}}
|
||||
// expected-warning@-4 {{declaration does not declare anything}}
|
||||
#else
|
||||
// expected-no-diagnostics
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue