diff options
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index a88a911..2d008d8 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -1130,6 +1130,10 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, getLastArgIntValue(Args, OPT_fxray_instruction_threshold_EQ, 200, Diags); Opts.XRayIgnoreLoops = Args.hasArg(OPT_fxray_ignore_loops); Opts.XRayOmitFunctionIndex = Args.hasArg(OPT_fno_xray_function_index); + Opts.XRayTotalFunctionGroups = + getLastArgIntValue(Args, OPT_fxray_function_groups, 1, Diags); + Opts.XRaySelectedFunctionGroup = + getLastArgIntValue(Args, OPT_fxray_selected_function_group, 0, Diags); auto XRayInstrBundles = Args.getAllArgValues(OPT_fxray_instrumentation_bundle); |