================
@@ -6981,6 +6981,9 @@ void Clang::ConstructJob(Compilation &C, const JobAction
&JA,
types::isCXX(InputType))
CmdArgs.push_back("-fcoro-aligned-allocation");
+ if (Args.hasFlag(options::OPT_fdefer_ts, options::OPT_fno_defer_ts, false))
+ CmdArgs.push_back("-fdefer-ts");
----------------
cor3ntin wrote:
```suggestion
if (Args.hasFlag(options::OPT_fdefer_ts, options::OPT_fno_defer_ts,
/*???=*/false))
CmdArgs.push_back("-fdefer-ts");
```
https://github.com/llvm/llvm-project/pull/162848
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits