@@ -98,8 +98,12 @@ def exclude_unsupported_files_for_aix(dirname):
9898 ("%clang_profgen=" , build_invocation (clang_cflags ) + " -fprofile-instr-generate=" )
9999)
100100config .substitutions .append (
101- ("%clang_profgen_cont " , build_invocation (clang_cflags ) + " -fprofile-instr-generate " +
102- ("-mllvm -runtime-counter-relocation " if runtime_reloc else "" ))
101+ (
102+ "%clang_profgen_cont " ,
103+ build_invocation (clang_cflags )
104+ + " -fprofile-instr-generate "
105+ + ("-mllvm -runtime-counter-relocation " if runtime_reloc else "" ),
106+ )
103107)
104108config .substitutions .append (
105109 (
@@ -121,8 +125,12 @@ def exclude_unsupported_files_for_aix(dirname):
121125 ("%clang_pgogen=" , build_invocation (clang_cflags ) + " -fprofile-generate=" )
122126)
123127config .substitutions .append (
124- ("%clang_pgogen_cont " , build_invocation (clang_cflags ) + " -fprofile-generate " +
125- ("-mllvm -runtime-counter-relocation " if runtime_reloc else "" ))
128+ (
129+ "%clang_pgogen_cont " ,
130+ build_invocation (clang_cflags )
131+ + " -fprofile-generate "
132+ + ("-mllvm -runtime-counter-relocation " if runtime_reloc else "" ),
133+ )
126134)
127135config .substitutions .append (
128136 ("%clangxx_pgogen " , build_invocation (clang_cxxflags ) + " -fprofile-generate " )
0 commit comments