Ada: Fixes build failure on Windows
This patch prevents the Ada compiler from filtering out comments in xsintnam.sed, resolving a build failure on Windows.
This patch addresses a build failure encountered on Windows machines. It modifies the xsintnam.sed file to prevent the filtering of comments, resolving the issue and ensuring successful compilation.
In Details
The sed script xsintnam.sed transforms textual descriptions of Ada's runtime library into C code. This change ensures that comments are preserved during this transformation on Windows, avoiding a build failure. No interaction with other subsystems is apparent.
For Context
The Ada compiler uses sed scripts to automate the generation of C code from high-level descriptions. These scripts perform text transformations, and this patch prevents one of them from unintentionally removing comments on Windows, which caused the build to fail. This ensures the Ada runtime library can be compiled correctly on Windows without manual intervention.