File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -972,12 +972,12 @@ function(process_llvm_pass_plugins)
972
972
const char* Name;\n\
973
973
const char* RequiredLibraries[1 + 1 + ${llvm_plugin_max_deps_length} ];\n\
974
974
};\n\
975
- std::array<ExtensionDescriptor, ${llvm_static_extension_count} > AvailableExtensions{\n " )
975
+ std::array<ExtensionDescriptor, ${llvm_static_extension_count} > AvailableExtensions{\n " )
976
976
977
977
foreach (llvm_extension ${LLVM_STATIC_EXTENSIONS} )
978
978
get_property (llvm_plugin_deps TARGET ${llvm_extension} PROPERTY LINK_LIBRARIES )
979
979
980
- file (APPEND "${ExtensionDeps} .tmp" "{\" ${llvm_extension} \" , {" )
980
+ file (APPEND "${ExtensionDeps} .tmp" "{{ \" ${llvm_extension} \" , {" )
981
981
foreach (llvm_plugin_dep ${llvm_plugin_deps} )
982
982
# Turn library dependency back to component name, if possible.
983
983
# That way llvm-config can avoid redundant dependencies.
@@ -991,7 +991,7 @@ function(process_llvm_pass_plugins)
991
991
endforeach ()
992
992
993
993
# Self + mandatory trailing null, because the number of RequiredLibraries differs between extensions.
994
- file (APPEND "${ExtensionDeps} .tmp" \"${llvm_extension} \", "nullptr}},\n " )
994
+ file (APPEND "${ExtensionDeps} .tmp" \"${llvm_extension} \", "nullptr}}} ,\n " )
995
995
endforeach ()
996
996
file (APPEND "${ExtensionDeps} .tmp" "};\n " )
997
997
You can’t perform that action at this time.
0 commit comments