summaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-10 13:56:44 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-10 13:56:44 +0000
commita6bb679d5b8d2117abb3845585e68d10f7bd38b3 (patch)
tree8be770df6de2abb2b79f4fab5b3cc0bdbb8d91ff /gcc/ada
parentbb1e734ba1032c8bc84c82638d229f96f3857431 (diff)
downloadgcc-a6bb679d5b8d2117abb3845585e68d10f7bd38b3.tar.gz
* s-vaflop.adb: Add pragma Warnings (Off) to eliminate infinite
recursion warnings when compiled with -gnatdm. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94824 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/s-vaflop.adb4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ada/s-vaflop.adb b/gcc/ada/s-vaflop.adb
index 35b5353e06a..10dbaef9f4c 100644
--- a/gcc/ada/s-vaflop.adb
+++ b/gcc/ada/s-vaflop.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1997-2001 Free Software Foundation, Inc. --
+-- Copyright (C) 1997-2005 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -40,6 +40,8 @@
with System.IO; use System.IO;
package body System.Vax_Float_Operations is
+ pragma Warnings (Off);
+ -- Warnings about infinite recursion when the -gnatdm switch is used.
-----------
-- Abs_F --