Skip to content

Commit

Permalink
citnames: Allow for include flag glued to the parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ljanyst authored and rizsotto committed Apr 27, 2024
1 parent 4d9d452 commit 0917017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/citnames/source/semantic/ToolGcc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ namespace cs::semantic {
{"-A", {MatchInstruction::EXACTLY_WITH_1_OPT_GLUED_OR_SEP, CompilerFlagType::PREPROCESSOR}},
{"-D", {MatchInstruction::EXACTLY_WITH_1_OPT_GLUED_OR_SEP, CompilerFlagType::PREPROCESSOR}},
{"-U", {MatchInstruction::EXACTLY_WITH_1_OPT_GLUED_OR_SEP, CompilerFlagType::PREPROCESSOR}},
{"-include", {MatchInstruction::EXACTLY_WITH_1_OPT_SEP, CompilerFlagType::PREPROCESSOR}},
{"-include", {MatchInstruction::EXACTLY_WITH_1_OPT_GLUED_OR_SEP, CompilerFlagType::PREPROCESSOR}},
{"-imacros", {MatchInstruction::EXACTLY_WITH_1_OPT_SEP, CompilerFlagType::PREPROCESSOR}},
{"-undef", {MatchInstruction::EXACTLY, CompilerFlagType::PREPROCESSOR}},
{"-pthread", {MatchInstruction::EXACTLY, CompilerFlagType::PREPROCESSOR}},
Expand Down

0 comments on commit 0917017

Please sign in to comment.