diff options
author | Viljar Indus <indus@adacore.com> | 2024-04-16 12:08:55 +0300 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2024-06-13 15:30:33 +0200 |
commit | a028b7f0090e82e79a5458b0e7e34915b377c04c (patch) | |
tree | 75d397dfa6ba9eb64a962a073e388c5690002870 | |
parent | 01acbd863241d631958eb1d61e1e530f362f67e8 (diff) | |
download | gcc-a028b7f0090e82e79a5458b0e7e34915b377c04c.zip gcc-a028b7f0090e82e79a5458b0e7e34915b377c04c.tar.gz gcc-a028b7f0090e82e79a5458b0e7e34915b377c04c.tar.bz2 |
ada: Remove message about goto rewritten as a loop
This message provides only inner details of how the compiler
handles this kind of construct and does not provide meaningful
information that the user can interact on.
gcc/ada/
* par-labl.adb (Rewrite_As_Loop): Remove info message
-rw-r--r-- | gcc/ada/par-labl.adb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/ada/par-labl.adb b/gcc/ada/par-labl.adb index 7b793c0..7ef897f 100644 --- a/gcc/ada/par-labl.adb +++ b/gcc/ada/par-labl.adb @@ -356,9 +356,6 @@ procedure Labl is Remove (Loop_Header); Rewrite (Loop_End, Loop_Stmt); - Error_Msg_N - ("info: code between label and backwards goto rewritten as loop??", - Loop_End); end Rewrite_As_Loop; -------------- |