Skip to content

Commit 06eb10d

Browse files
everythingfunctionalh-vetinaribanach-space
authoredOct 10, 2024
[flang][driver] rename flang-new to flang (#110023)
This does a global rename from `flang-new` to `flang`. I also removed/changed any TODOs that I found related to making this change. --------- Co-authored-by: H. Vetinari <[email protected]> Co-authored-by: Andrzej Warzynski <[email protected]>
1 parent f1eac77 commit 06eb10d

File tree

70 files changed

+249
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+249
-228
lines changed
 

‎.github/workflows/release-binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ jobs:
328328
run: |
329329
# Build some of the mlir tools that take a long time to link
330330
if [ "${{ needs.prepare.outputs.build-flang }}" = "true" ]; then
331-
ninja -C ${{ steps.setup-stage.outputs.build-prefix }}/build/tools/clang/stage2-bins/ -j2 flang-new bbc
331+
ninja -C ${{ steps.setup-stage.outputs.build-prefix }}/build/tools/clang/stage2-bins/ -j2 flang bbc
332332
fi
333333
ninja -C ${{ steps.setup-stage.outputs.build-prefix }}/build/tools/clang/stage2-bins/ \
334334
mlir-bytecode-parser-fuzzer \

‎clang/include/clang/Basic/DiagnosticDriverKinds.td

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ def warn_drv_unsupported_option_for_processor : Warning<
147147
def warn_drv_unsupported_openmp_library : Warning<
148148
"the library '%0=%1' is not supported, OpenMP will not be enabled">,
149149
InGroup<OptionIgnored>;
150+
def warn_openmp_experimental : Warning<
151+
"OpenMP support in flang is still experimental">,
152+
InGroup<ExperimentalOption>;
150153

151154
def err_drv_invalid_thread_model_for_target : Error<
152155
"invalid thread model '%0' in '%1' for this target">;

0 commit comments

Comments
 (0)
Please sign in to comment.